Skip to content

Commit

Permalink
Merge pull request #409 from mroi/patch-error
Browse files Browse the repository at this point in the history
localize error message titles
  • Loading branch information
tobyzerner committed Jan 23, 2015
2 parents 730c681 + ad08871 commit d7afc6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/controllers/ETConversationController.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public function action_start($member = false)

// If the user is suspended, show an error.
if (ET::$session->isSuspended()) {
$this->renderMessage("Error!", T("message.suspended"));
$this->renderMessage(T("Error"), T("message.suspended"));
return;
}

Expand All @@ -355,7 +355,7 @@ public function action_start($member = false)

// The user not permission to star conversation.
if (!$channels){
$this->renderMessage("Error!", T("message.noPermission"));
$this->renderMessage(T("Error"), T("message.noPermission"));
return;
}

Expand Down

0 comments on commit d7afc6d

Please sign in to comment.