diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-09-10 15:31:52 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 00:39:34 +0200 |
| commit | 2a1207b14f7792b935ffd6ffff9d6c89fcce638b (patch) | |
| tree | 18719bcb3e9e1d77714d0a9ae145a0aa69118c4c /tests/notification/submit_post_base.php | |
| parent | 239381b946e20e98459dfa5f36962df37cd76d82 (diff) | |
| download | forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.gz forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.bz2 forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.xz forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.zip | |
[ticket/11700] Correclty use namespaces in notifications
PHPBB3-11700
Diffstat (limited to 'tests/notification/submit_post_base.php')
| -rw-r--r-- | tests/notification/submit_post_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/notification/submit_post_base.php b/tests/notification/submit_post_base.php index 09cd7b4213..8597c626a4 100644 --- a/tests/notification/submit_post_base.php +++ b/tests/notification/submit_post_base.php @@ -105,7 +105,7 @@ class phpbb_notification_submit_post_base extends phpbb_database_test_case $notification_types_array = array(); foreach ($notification_types as $type) { - $class_name = 'phpbb_notification_type_' . $type; + $class_name = '\phpbb\notification\type\\' . $type; $class = new $class_name( $user_loader, $db, $cache->get_driver(), $user, $auth, $config, $phpbb_root_path, $phpEx, |
