mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 18:26:32 +02:00
[ticket/11700] Fix installation after develop merge
PHPBB3-11700
This commit is contained in:
2
phpBB/phpbb/cache/driver/file.php
vendored
2
phpBB/phpbb/cache/driver/file.php
vendored
@@ -260,7 +260,7 @@ class file extends \phpbb\cache\driver\base
|
||||
{
|
||||
try
|
||||
{
|
||||
$iterator = new DirectoryIterator($dir);
|
||||
$iterator = new \DirectoryIterator($dir);
|
||||
}
|
||||
catch (Exception $e)
|
||||
{
|
||||
|
@@ -7,7 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_db_migration_data_310_auth_provider_oauth extends phpbb_db_migration
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
class auth_provider_oauth extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
@@ -7,12 +7,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_db_migration_data_310_mod_rewrite extends phpbb_db_migration
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
class mod_rewrite extends \phpbb\db\migration\migration
|
||||
{
|
||||
static public function depends_on()
|
||||
{
|
||||
return array(
|
||||
'phpbb_db_migration_data_310_dev',
|
||||
'\phpbb\db\migration\data\v310\dev',
|
||||
);
|
||||
}
|
||||
|
@@ -7,11 +7,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_db_migration_data_310_notifications_cron extends phpbb_db_migration
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
class notifications_cron extends \phpbb\db\migration\migration
|
||||
{
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('phpbb_db_migration_data_310_notifications');
|
||||
return array('\phpbb\db\migration\data\v310\notifications');
|
||||
}
|
||||
|
||||
public function update_data()
|
@@ -7,7 +7,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
class phpbb_db_migration_data_310_softdelete_mcp_modules extends phpbb_db_migration
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
class softdelete_mcp_modules extends \phpbb\db\migration\migration
|
||||
{
|
||||
public function effectively_installed()
|
||||
{
|
||||
@@ -26,8 +28,8 @@ class phpbb_db_migration_data_310_softdelete_mcp_modules extends phpbb_db_migrat
|
||||
static public function depends_on()
|
||||
{
|
||||
return array(
|
||||
'phpbb_db_migration_data_310_dev',
|
||||
'phpbb_db_migration_data_310_softdelete_p2',
|
||||
'phpbb\db\migration\data\v310\dev',
|
||||
'phpbb\db\migration\data\v310\softdelete_p2',
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user