diff options
| author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-05-13 00:36:16 -0500 |
|---|---|---|
| committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-05-13 00:36:16 -0500 |
| commit | 4e073eb818fc377ced5471c704d0755b0e5494e6 (patch) | |
| tree | 5e0055151c517b59dc188cd89c378acc46730e2a /phpBB/includes/notification | |
| parent | a4d6486d8061049f5c40e971463b171f4ee33708 (diff) | |
| parent | 7d66a9ad525049b8df453ba0325e3dd38fb1157a (diff) | |
| download | forums-4e073eb818fc377ced5471c704d0755b0e5494e6.tar forums-4e073eb818fc377ced5471c704d0755b0e5494e6.tar.gz forums-4e073eb818fc377ced5471c704d0755b0e5494e6.tar.bz2 forums-4e073eb818fc377ced5471c704d0755b0e5494e6.tar.xz forums-4e073eb818fc377ced5471c704d0755b0e5494e6.zip | |
Merge branch 'ticket/11413' of github.com:EXreaction/phpbb3 into ticket/11413
Diffstat (limited to 'phpBB/includes/notification')
| -rw-r--r-- | phpBB/includes/notification/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/notification/manager.php b/phpBB/includes/notification/manager.php index a9eb503fb8..bf437e95f0 100644 --- a/phpBB/includes/notification/manager.php +++ b/phpBB/includes/notification/manager.php @@ -873,7 +873,7 @@ class phpbb_notification_manager { if (!isset($this->notification_types[$notification_type_name]) && !isset($this->notification_types['notification.type.' . $notification_type_name])) { - throw new phpbb_notification_exception('Notification type ' . $notification_type_name . ' does not exist'); + throw new phpbb_notification_exception($user->lang('NOTIFICATION_TYPE_NOT_EXIST', $notification_type_name)); } $sql = 'INSERT INTO ' . $this->notification_types_table . ' ' . $this->db->sql_build_array('INSERT', array( |
