X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fadminpanelaction.php;h=4868e9d492de116af2ba5b785f1185d7af17ca3c;hb=cb183359e23ae7a5cfb483fa06c6c4b7a8b05fff;hp=5e7e284b5cc52b18bac0d2e7ec8579b92b7a9444;hpb=d0317d96e18c21f1ae38e95bfa66a03328ded0ed;p=quix0rs-gnu-social.git diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 5e7e284b5c..4868e9d492 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -67,7 +67,7 @@ class AdminPanelAction extends Action // User must be logged in. if (!common_logged_in()) { - // TRANS: Client error message thrown when trying to access the admin panel while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } @@ -251,35 +251,6 @@ class AdminPanelAction extends Action return; } - /** - * Delete a design setting - * - * // XXX: Maybe this should go in Design? --Z - * - * @return mixed $result false if something didn't work - */ - function deleteSetting($section, $setting) - { - $config = new Config(); - - $config->section = $section; - $config->setting = $setting; - - if ($config->find(true)) { - $result = $config->delete(); - if (!$result) { - common_log_db_error($config, 'DELETE', __FILE__); - // TRANS: Client error message thrown if design settings could not be deleted in - // TRANS: the admin panel Design. - $this->clientError(_("Unable to delete design setting.")); - return null; - } - return $result; - } - - return null; - } - function canAdmin($name) { $isOK = false;