Install Joomla 3.4.2-rc
Set you Editor to CodeMirror
Create a new Article and click on the ReadMore Button under the Editor
After the you should see a readmore snippet in your Code
You are redirected to the Admin Dashboard
Joomla 3.4.1 -> Joomla 3.4.2-rc
PHP 5.6.2
Mysql 5.6.19
Tested Browser: FireFox 38.0.5
Build | 3.4.2-rc | ⇒ | staging |
Status | New | ⇒ | Confirmed |
Priority | Medium | ⇒ | Urgent |
Raised priority based on https://docs.joomla.org/Priority
Actually best way to solve this is to revert that patch and edit tinyMCE so the read more will be injected always to the active editor (in case of multiple instances)
so instead of
public function onSetContent($editor, $html)
{
return 'tinyMCE.get(\'' . $editor . '\').setContent(' . $html . ');';
}
we have this
public function onSetContent($html)
{
return 'tinyMCE.activeEditor.setContent(' . $html . ');';
}
Please propose a patch. This is a regression.
Title |
|
Changed title to add 'regression"
Closing as we have a PR.
Status | Confirmed | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-06-25 15:14:18 |
Closed_By | ⇒ | Bakual |
Confirmed
This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/7260.