diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-04 06:39:46 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-04 06:39:46 -0800 |
commit | 9f861e9d895325adbb2dc7f1d540a442be2c1b2f (patch) | |
tree | 7512ccbc3b596e1de635653dc63640dd0034ab74 /actions | |
parent | 14d7f4a598d0e24467fe3eafd9a02b0e651edad8 (diff) |
Fix on sitenotice admin panel save
Diffstat (limited to 'actions')
-rw-r--r-- | actions/sitenoticeadminpanel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index 613a2e96b..3931aa982 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -99,7 +99,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction $result = Config::save('site', 'notice', $siteNotice); - if (!result) { + if (!$result) { $this->ServerError(_("Unable to save site notice.")); } } |