aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-07-29 22:08:37 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-07-29 22:08:37 +0200
commit4ae83e426663d129d7068b312097ad968242f41f (patch)
tree30ef6c5461a075b718110a528c39e26b78721d81
parent6eb284b23af0568922e787e5875dc1ee8783e71f (diff)
downloadforums-4ae83e426663d129d7068b312097ad968242f41f.tar
forums-4ae83e426663d129d7068b312097ad968242f41f.tar.gz
forums-4ae83e426663d129d7068b312097ad968242f41f.tar.bz2
forums-4ae83e426663d129d7068b312097ad968242f41f.tar.xz
forums-4ae83e426663d129d7068b312097ad968242f41f.zip
[ticket/14056] Fix remaining schema path
PHPBB3-14056
-rw-r--r--phpBB/phpbb/install/module/install_database/task/create_schema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/module/install_database/task/create_schema.php b/phpBB/phpbb/install/module/install_database/task/create_schema.php
index cbec5edb6d..7cc521eee8 100644
--- a/phpBB/phpbb/install/module/install_database/task/create_schema.php
+++ b/phpBB/phpbb/install/module/install_database/task/create_schema.php
@@ -119,7 +119,7 @@ class create_schema extends \phpbb\install\task_base
}
}
- $db_schema_path = $this->phpbb_root_path . 'phpbb/install/schemas/' . $schema_name . '_schema.sql';
+ $db_schema_path = $this->phpbb_root_path . 'install/schemas/' . $schema_name . '_schema.sql';
// Load database vendor specific code if there is any
if ($this->filesystem->exists($db_schema_path))