Change Exception message in UsersProcessor::checkOperator method

This commit is contained in:
Dmitriy Simushev 2013-02-04 13:46:04 +00:00
parent 606de23f8d
commit e731d9869e

View File

@ -114,7 +114,7 @@ class UsersProcessor extends ClientSideProcessor {
$operator = get_logged_in(); $operator = get_logged_in();
if (!$operator) { if (!$operator) {
throw new UsersProcessorException( throw new UsersProcessorException(
getstring("agent.not_logged_in"), "Operator not logged in!",
UsersProcessorException::ERROR_AGENT_NOT_LOGGED_IN UsersProcessorException::ERROR_AGENT_NOT_LOGGED_IN
); );
} }