aboutsummaryrefslogtreecommitdiffstats
path: root/tests/security
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-09-30 18:31:26 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-09-30 18:31:26 -0500
commit85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e (patch)
tree79312a87dc19e3a23ea8a177fcc45bf5a8d650ae /tests/security
parenta6df011a107132390ecc35b80ab0e88bc31fd103 (diff)
downloadforums-85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e.tar
forums-85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e.tar.gz
forums-85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e.tar.bz2
forums-85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e.tar.xz
forums-85ae55ca2d6a99bfc0eaf66bf7bb710050b0cb1e.zip
[ticket/11850] Update for namespaces
PHPBB3-11850
Diffstat (limited to 'tests/security')
-rw-r--r--tests/security/extract_current_page_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/security/extract_current_page_test.php b/tests/security/extract_current_page_test.php
index a7560f0d15..9980530dbe 100644
--- a/tests/security/extract_current_page_test.php
+++ b/tests/security/extract_current_page_test.php
@@ -43,7 +43,7 @@ class phpbb_security_extract_current_page_test extends phpbb_security_test_base
$symfony_request->expects($this->any())
->method('getPathInfo')
->will($this->returnValue('/'));
- $result = phpbb_session::extract_current_page('./');
+ $result = \phpbb\session::extract_current_page('./');
$label = 'Running extract_current_page on ' . $query_string . ' with PHP_SELF filled.';
$this->assertEquals($expected, $result['query_string'], $label);