aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text_processing/make_clickable_test.php
diff options
context:
space:
mode:
authorErik Frèrejean <erikfrerejean@phpbb.com>2011-01-31 12:58:18 +0100
committerErik Frèrejean <erikfrerejean@phpbb.com>2011-01-31 12:58:18 +0100
commit14891cdf4ecf0e3ee164962be6685b8563f37a15 (patch)
tree8877caadc2d6bff92677fd059bd36e53fcd8989f /tests/text_processing/make_clickable_test.php
parent01fb5532cf27090ee04a8ad4f14bc712dc2f115b (diff)
downloadforums-14891cdf4ecf0e3ee164962be6685b8563f37a15.tar
forums-14891cdf4ecf0e3ee164962be6685b8563f37a15.tar.gz
forums-14891cdf4ecf0e3ee164962be6685b8563f37a15.tar.bz2
forums-14891cdf4ecf0e3ee164962be6685b8563f37a15.tar.xz
forums-14891cdf4ecf0e3ee164962be6685b8563f37a15.zip
[ticket/10011] Tests don't work on PHP < 5.3
Due to the usage of `__DIR__` for the file includes the tests can't be ran on systems with PHP < 5.3. Replace all occurances of `__DIR__` with `dirname(__FILE__)`. PHPBB3-10011
Diffstat (limited to 'tests/text_processing/make_clickable_test.php')
-rw-r--r--tests/text_processing/make_clickable_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/text_processing/make_clickable_test.php b/tests/text_processing/make_clickable_test.php
index 75a35daf82..29b982d709 100644
--- a/tests/text_processing/make_clickable_test.php
+++ b/tests/text_processing/make_clickable_test.php
@@ -7,8 +7,8 @@
*
*/
-require_once __DIR__ . '/../../phpBB/includes/functions.php';
-require_once __DIR__ . '/../../phpBB/includes/functions_content.php';
+require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
+require_once dirname(__FILE__) . '/../../phpBB/includes/functions_content.php';
class phpbb_text_processing_make_clickable_test extends phpbb_test_case
{