If you are using Rokpad editor from Rockettheme, you may run into editor problems. The solution depends on what you want to control on your backend.
Solution:
We have a system plugin adminpraise-mootools that checks if the joomla mtupgrade plugin is on or off. If it is off - we load mootools 1.2 for the backend. If it is on - we do nothing.
Rockpad checks if mtupgrade is on or off. If it is off it includes the mootools 1.1 version of their js files but since we have included mootools 1.2 brakes.
The solution for you would be to manually enable the mtupgrade plugin and disable adminpraise-mootools. This way both rockpad and adminpraise will work. Go to your system tools on the right hand side of Adminpraise3 and simply disable adminpraise-mootools and enable mootools-upgrade.


If you don't want to enable mtupgrade, because you have extensions in the frontend that are not compatible with mootools 1.2 you could go to plugins/editor/rockpad.php line 569
Code:
if (version_compare(JVERSION, '1.5', '>=') && version_compare(JVERSION, '1.6', '<')){
if (JPluginHelper::isEnabled('system', 'mtupgrade')){
return "-mt1.2";
} else {
return "";
}
} else {
return "";
}
}
Change this function to:
return "-mt1.2";
}
This way rockpad will always lood the mootools 1.2 version of the js files and everything will be fine.