diff options
author | Zach Copley <zach@status.net> | 2010-03-18 13:46:11 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-18 13:49:28 -0700 |
commit | 54c6dc090b6f5d406ded164c6fe8f9d4753e6b88 (patch) | |
tree | 15b3d38431c69a1c379143762119f4bea844140b | |
parent | 85b93310ddb4cd82ebe1fcefea1ff81ae5746fd0 (diff) |
Remove deprecated call-by-reference. Was causing a warning on Dreamhost.
-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 3931aa982..a68cc699c 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -93,7 +93,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction // assert(all values are valid); // This throws an exception on validation errors - $this->validate(&$siteNotice); + $this->validate($siteNotice); $config = new Config(); |