diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ff6b955cfa147ba2a70f3bb84a91424ae66e051e..5747a7f4f3f80f06611f0b7d22867a9e9a51b063 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 --------------------------- +#752516 by nquocbao, sun: Fixed openwysiwyg version callback. #753536 by TwoD: Fixed version detection for Whizzywig. #752516 by nquocbao, sun: Fixed file stream warnings in version callbacks. diff --git a/editors/openwysiwyg.inc b/editors/openwysiwyg.inc index 7f77baae994c915d295234f270542f50ecb6dad5..fa521c4329c394a0267c391e6d45b1114d30c5bf 100644 --- a/editors/openwysiwyg.inc +++ b/editors/openwysiwyg.inc @@ -45,7 +45,8 @@ function wysiwyg_openwysiwyg_editor() { * The installed editor version. */ function wysiwyg_openwysiwyg_version($editor) { - $changelog = $editor['library path'] . '/changelog'; + // 'library path' has '/scripts' appended already. + $changelog = $editor['editor path'] . '/changelog'; if (!file_exists($changelog)) { return; }