diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f93776888231826c8e3598000e75d4d7d90a4bbe..306ba492257d1884cea75bd5ba5559fafd104762 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -6,6 +6,7 @@ Wysiwyg x.x-x.x, xxxx-xx-xx Wysiwyg 6.x-2.x, xxxx-xx-xx --------------------------- +#380586 by SimonEast: Updated YUI editor: Version detection not working. #610132 by TwoD: Updated CKEditor 3.0.1, stylesheets and version check. #620858 by quicksketch: Fixed focus event not firing for CKeditor. #462146 by TwoD, et al: Added support for CKeditor. diff --git a/editors/yui.inc b/editors/yui.inc index 6f03e6fdee11f05ba8db61acd71f88c7e653fe16..b2cb56e8c53958b82c8ec8cb1549ef477c20d5cc 100644 --- a/editors/yui.inc +++ b/editors/yui.inc @@ -69,7 +69,7 @@ function wysiwyg_yui_version($editor) { $library = fopen($library, 'r'); $max_lines = 10; while ($max_lines && $line = fgets($library, 60)) { - if (preg_match('@version:\s([0-9\.]+)$@', $line, $version)) { + if (preg_match('@version:\s([0-9\.]+)@', $line, $version)) { fclose($library); return $version[1]; }