diff options
| author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-03 16:06:42 +0200 |
|---|---|---|
| committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-15 02:10:46 +0200 |
| commit | f5ce9f273829ba470a1348b4314cddb58f552da0 (patch) | |
| tree | aee0124c7f03c93298c358e77005299eea856f1d /tests/notification/base.php | |
| parent | 98db63e8ccf7effd4213f3ef2b1152c5f6ef6295 (diff) | |
| download | forums-f5ce9f273829ba470a1348b4314cddb58f552da0.tar forums-f5ce9f273829ba470a1348b4314cddb58f552da0.tar.gz forums-f5ce9f273829ba470a1348b4314cddb58f552da0.tar.bz2 forums-f5ce9f273829ba470a1348b4314cddb58f552da0.tar.xz forums-f5ce9f273829ba470a1348b4314cddb58f552da0.zip | |
[ticket/13680] Updated quote notifications
Added get_quote_authors() to text_formatter.utils service to retrieve
the names used in first-level quotes
PHPBB3-13680
Diffstat (limited to 'tests/notification/base.php')
| -rw-r--r-- | tests/notification/base.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/notification/base.php b/tests/notification/base.php index a1ebecd6f9..45b0b6f179 100644 --- a/tests/notification/base.php +++ b/tests/notification/base.php @@ -116,7 +116,14 @@ abstract class phpbb_tests_notification_base extends phpbb_database_test_case { global $phpbb_root_path, $phpEx; - return new $type($this->user_loader, $this->db, $this->cache->get_driver(), $this->user, $this->auth, $this->config, $phpbb_root_path, $phpEx, 'phpbb_notification_types', 'phpbb_notifications', 'phpbb_user_notifications'); + $instance = new $type($this->user_loader, $this->db, $this->cache->get_driver(), $this->user, $this->auth, $this->config, $phpbb_root_path, $phpEx, 'phpbb_notification_types', 'phpbb_notifications', 'phpbb_user_notifications'); + + if ($type === 'phpbb\\notification\\type\\quote') + { + $instance->set_utils(new \phpbb\textformatter\s9e\utils); + } + + return $instance; } protected function assert_notifications($expected, $options = array()) |
