diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1f7a425c75ab01ced0f1991c6920568a5b56aaad..b9df30d173f5e7de6fd000025354844da54c9527 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -6,6 +6,8 @@ Wysiwyg x.x-x.x, xxxx-xx-xx Wysiwyg 5.x-x.x, xxxx-xx-xx --------------------------- +#327100 by sun: Changed access permission for settings page to 'administer + filters' to prevent incomplete updates. #322731 by sun: Fixed improper use of t() in module install file. #329410 by sun: Fixed editor not loaded if there is only one input format. #324366 by sun: Fixed "Illegal offset type" error on custom content-types. diff --git a/wysiwyg.module b/wysiwyg.module index 2c4bf650746d545f5dee91f03eaf97bc37c38618..1c5754378947584bd2597822385fcbffc4176a34 100644 --- a/wysiwyg.module +++ b/wysiwyg.module @@ -17,7 +17,7 @@ function wysiwyg_menu($may_cache) { 'title' => t('Wysiwyg'), 'callback' => 'wysiwyg_admin', 'description' => t('Configure client-side editor profiles.'), - 'access' => user_access('administer site configuration'), + 'access' => user_access('administer filters'), ); } return $items;