From 5ae86ae21938bc42d334a47c90fc388daf7b365d Mon Sep 17 00:00:00 2001 From: secretr Date: Thu, 5 Nov 2009 00:28:25 +0000 Subject: [PATCH] admin tools: settings action renamed to prefs --- e107_handlers/admin_handler.php | 4 ++-- e107_plugins/release/includes/admin.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/e107_handlers/admin_handler.php b/e107_handlers/admin_handler.php index dd4714f83..c3b28112e 100644 --- a/e107_handlers/admin_handler.php +++ b/e107_handlers/admin_handler.php @@ -2114,7 +2114,7 @@ class e_admin_ui extends e_admin_controller_ui return $this->getUI()->getCreate(); } - public function SettingsSaveTrigger() + public function PrefsSaveTrigger() { $this->getConfig() @@ -2126,7 +2126,7 @@ class e_admin_ui extends e_admin_controller_ui } - public function SettingsPage() + public function PrefsPage() { return $this->getUI()->getSettings(); } diff --git a/e107_plugins/release/includes/admin.php b/e107_plugins/release/includes/admin.php index 5f8901e34..0bfc0a5d9 100644 --- a/e107_plugins/release/includes/admin.php +++ b/e107_plugins/release/includes/admin.php @@ -9,8 +9,8 @@ * Release Plugin Administration UI * * $Source: /cvs_backup/e107_0.8/e107_plugins/release/includes/admin.php,v $ - * $Revision: 1.4 $ - * $Date: 2009-11-04 17:29:26 $ + * $Revision: 1.5 $ + * $Date: 2009-11-05 00:28:25 $ * $Author: secretr $ */ @@ -33,7 +33,7 @@ class plugin_release_admin extends e_admin_dispatcher protected $adminMenu = array( 'main/list' => array('caption'=> 'Manage', 'perm' => '0'), 'main/create' => array('caption'=> LAN_CREATE, 'perm' => '0'), - 'main/settings' => array('caption'=> 'Settings', 'perm' => '0'), + 'main/prefs' => array('caption'=> 'Settings', 'perm' => '0'), 'main/custom' => array('caption'=> 'Custom Page', 'perm' => '0') );