X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fdeletenotice.php;h=f278300838bb0e29267d43fa0bab2860cc92c22b;hb=fe11f9a28c8ef2df46e09c53276f8d2184b03f2e;hp=9032de897416f272dc53bce51d568d7b147810c9;hpb=9a6ee5e859635bd7acfbdf1e1994f665d39455af;p=quix0rs-gnu-social.git diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 9032de8974..f278300838 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -41,20 +41,20 @@ class DeletenoticeAction extends Action var $profile = null; var $user_profile = null; - function prepare($args) + function prepare(array $args=array()) { parent::prepare($args); $this->user = common_current_user(); if (!$this->user) { - // TRANS: Error message displayed trying to delete a notice while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. common_user_error(_('Not logged in.')); exit; } $notice_id = $this->trimmed('notice'); - $this->notice = Notice::staticGet($notice_id); + $this->notice = Notice::getKV($notice_id); if (!$this->notice) { // TRANS: Error message displayed trying to delete a non-existing notice. @@ -68,7 +68,7 @@ class DeletenoticeAction extends Action return true; } - function handle($args) + function handle(array $args=array()) { parent::handle($args);