Merge branch 'wip-MDL-40621-m24' of git://github.com/marinaglancy/moodle into MOODLE_24_STABLE

This commit is contained in:
Damyon Wiese
2013-07-16 21:31:52 +08:00
+4 -3
View File
@@ -198,7 +198,7 @@ abstract class editor_tinymce_plugin {
* @param int $row Row to add button to (1 to 10)
* @param string $button Identifier of button/plugin
* @param string $before Adds button directly before the named plugin
* @param bool $alwaysadd If specified $after string not found, add at start
* @param bool $alwaysadd If specified $before string not found, add at start
* @return bool True if added
*/
protected function add_button_before(array &$params, $row, $button,
@@ -218,7 +218,7 @@ abstract class editor_tinymce_plugin {
return true;
}
// Try to add after given plugin.
// Try to add before given plugin.
$params[$field] = preg_replace('~(,|^)(' . preg_quote($before) . ')(,|$)~',
'$1' . $button . ',$2$3', $old);
if ($params[$field] !== $old) {
@@ -270,8 +270,9 @@ abstract class editor_tinymce_plugin {
return $row;
}
for($i=$row; $i>=1; $i--) {
$field = 'theme_advanced_buttons' . $i;
if (isset($params[$field])) {
return $row;
return $i;
}
}
// This should not happen.