summaryrefslogtreecommitdiff
path: root/actions/disfavor.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 23:05:57 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 23:05:57 +0000
commit0357ea505dd8aba293a67f0bfa122c3bbd29e51b (patch)
tree2329651d23e2795cef00ea80bd1b252c7510fc94 /actions/disfavor.php
parent8d9fb7711f32f7b7c0676641dd0c2b9343a5666f (diff)
parent4b0cf99e56f965e10eeb8b8b19e7b405bda49eaf (diff)
Merge branch 'uiredesign' of ../evan into uiredesign
Diffstat (limited to 'actions/disfavor.php')
-rw-r--r--actions/disfavor.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/disfavor.php b/actions/disfavor.php
index 9a27f34b1..fc36f7c75 100644
--- a/actions/disfavor.php
+++ b/actions/disfavor.php
@@ -28,7 +28,7 @@ class DisfavorAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -46,7 +46,7 @@ class DisfavorAction extends Action
$token = $this->trimmed('token-'.$notice->id);
if (!$token || $token != common_session_token()) {
- $this->client_error(_("There was a problem with your session token. Try again, please."));
+ $this->clientError(_("There was a problem with your session token. Try again, please."));
return;
}
@@ -54,7 +54,7 @@ class DisfavorAction extends Action
$fave->user_id = $this->id;
$fave->notice_id = $notice->id;
if (!$fave->find(true)) {
- $this->client_error(_('This notice is not a favorite!'));
+ $this->clientError(_('This notice is not a favorite!'));
return;
}
@@ -62,7 +62,7 @@ class DisfavorAction extends Action
if (!$result) {
common_log_db_error($fave, 'DELETE', __FILE__);
- $this->server_error(_('Could not delete favorite.'));
+ $this->serverError(_('Could not delete favorite.'));
return;
}