Index: bueditor.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/bueditor/bueditor.module,v retrieving revision 1.14.2.8 diff -u -p -r1.14.2.8 bueditor.module --- bueditor.module 27 Feb 2009 21:57:18 -0000 1.14.2.8 +++ bueditor.module 9 Mar 2009 22:14:14 -0000 @@ -7,7 +7,7 @@ function bueditor_menu() { $items = array(); $path = 'admin/settings/bueditor'; - $access = array('administer site configuration'); + $access = array('administer bueditor'); $items[$path] = array( 'title' => 'BUEditor', 'description' => 'Customize your text editor.', @@ -43,6 +43,13 @@ function bueditor_menu() { } /** + * Implementation of hook_perm(). + */ +function bueditor_perm() { + return array('administer bueditor'); +} + +/** * Implementation of hook_theme(). */ function bueditor_theme() {