Index: editors/markitup.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/markitup.inc,v retrieving revision 1.7.2.2 diff -u -p -r1.7.2.2 markitup.inc --- editors/markitup.inc 2 Apr 2010 14:05:54 -0000 1.7.2.2 +++ editors/markitup.inc 11 Apr 2010 15:06:36 -0000 @@ -50,7 +50,11 @@ function wysiwyg_markitup_editor() { function wysiwyg_markitup_version($editor) { $changelog = $editor['library path'] . '/readme.txt'; if (!file_exists($changelog)) { - return; + // Changelog was moved up to markitup/CHANGELOG.md after 1.1.5. + $changelog = $editor['library path'] . '/../CHANGELOG.md'; + if (!file_exists($changelog)) { + return; + } } $changelog = fopen($changelog, 'r'); $line = fgets($changelog);