remove forgotten debug message

This commit is contained in:
Cornelius Weiß 2007-02-11 07:48:44 +00:00
parent d391c01c42
commit 0f11596866
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ final class notification {
}
catch (Exception $exception) {
$send_succseed--;
echo $exception->getMessage(), "\n";
//echo $exception->getMessage(), "\n";
}
}

View File

@ -94,7 +94,7 @@ class notification_popup implements iface_notification {
$user_sessions[] = $session['session_id'];
}
}
if ( empty($user_sessions) ) throw new Exception("Notice: User isn't online. Can't send notification via popup");
if ( empty($user_sessions) ) throw new Exception("Notice: User $this->account isn't online. Can't send notification via popup");
$this->save( $_message, $user_sessions );
}