mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-16 22:51:23 +02:00
Merge branch 'ticket/naderman/10011' into develop
* ticket/naderman/10011: [ticket/10011] Removing __DIR__ for PHP5.2 compatability from new files.
This commit is contained in:
@@ -7,12 +7,12 @@
|
||||
*
|
||||
*/
|
||||
|
||||
require_once __DIR__ . '/../mock/cache.php';
|
||||
require_once __DIR__ . '/task/testmod/dummy_task.php';
|
||||
require_once __DIR__ . '/task/testmod/second_dummy_task.php';
|
||||
require_once __DIR__ . '/task2/testmod/simple_ready.php';
|
||||
require_once __DIR__ . '/task2/testmod/simple_not_runnable.php';
|
||||
require_once __DIR__ . '/task2/testmod/simple_should_not_run.php';
|
||||
require_once dirname(__FILE__) . '/../mock/cache.php';
|
||||
require_once dirname(__FILE__) . '/task/testmod/dummy_task.php';
|
||||
require_once dirname(__FILE__) . '/task/testmod/second_dummy_task.php';
|
||||
require_once dirname(__FILE__) . '/task2/testmod/simple_ready.php';
|
||||
require_once dirname(__FILE__) . '/task2/testmod/simple_not_runnable.php';
|
||||
require_once dirname(__FILE__) . '/task2/testmod/simple_should_not_run.php';
|
||||
|
||||
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
|
||||
{
|
||||
|
Reference in New Issue
Block a user