From 24565182a446924e7000fd2110e4cee9a5dcde50 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 31 Jan 2013 19:28:00 -0800 Subject: [PATCH] make addon (featured) settings page work --- mod/settings.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/settings.php b/mod/settings.php index 7d8a3c604..a1561e79c 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -60,7 +60,7 @@ function settings_aside(&$a) { array( 'label' => t('Feature settings'), 'url' => $a->get_baseurl(true).'/settings/featured', - 'selected' => ((argv(1) === 'addon') ? 'active' : ''), + 'selected' => ((argv(1) === 'featured') ? 'active' : ''), ), array( @@ -665,20 +665,20 @@ function settings_content(&$a) { return $o; } - if((argc() > 1) && (argv(1) === 'addon')) { + if((argc() > 1) && (argv(1) === 'featured')) { $settings_addons = ""; $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' "); if(! count($r)) - $settings_addons = t('No Plugin settings configured'); + $settings_addons = t('No feature settings configured'); call_hooks('plugin_settings', $settings_addons); $tpl = get_markup_template("settings_addons.tpl"); $o .= replace_macros($tpl, array( - '$form_security_token' => get_form_security_token("settings_addon"), - '$title' => t('Plugin Settings'), + '$form_security_token' => get_form_security_token("settings_featured"), + '$title' => t('Feature Settings'), '$settings_addons' => $settings_addons )); return $o;