mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/10011] Removing __DIR__ for PHP5.2 compatability from new files.
PHPBB3-10011
This commit is contained in:
parent
f0b36961fc
commit
4f14ae94e2
2 changed files with 7 additions and 7 deletions
|
@ -7,12 +7,12 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once __DIR__ . '/../mock/cache.php';
|
require_once dirname(__FILE__) . '/../mock/cache.php';
|
||||||
require_once __DIR__ . '/task/testmod/dummy_task.php';
|
require_once dirname(__FILE__) . '/task/testmod/dummy_task.php';
|
||||||
require_once __DIR__ . '/task/testmod/second_dummy_task.php';
|
require_once dirname(__FILE__) . '/task/testmod/second_dummy_task.php';
|
||||||
require_once __DIR__ . '/task2/testmod/simple_ready.php';
|
require_once dirname(__FILE__) . '/task2/testmod/simple_ready.php';
|
||||||
require_once __DIR__ . '/task2/testmod/simple_not_runnable.php';
|
require_once dirname(__FILE__) . '/task2/testmod/simple_not_runnable.php';
|
||||||
require_once __DIR__ . '/task2/testmod/simple_should_not_run.php';
|
require_once dirname(__FILE__) . '/task2/testmod/simple_should_not_run.php';
|
||||||
|
|
||||||
class phpbb_cron_manager_test extends PHPUnit_Framework_TestCase
|
class phpbb_cron_manager_test extends PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once __DIR__ . '/../../phpBB/includes/functions.php';
|
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
||||||
|
|
||||||
class phpbb_lock_db_test extends phpbb_database_test_case
|
class phpbb_lock_db_test extends phpbb_database_test_case
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue