aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/driver.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-09-26 00:42:04 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-09-26 00:42:04 +0200
commit03639c081cfe92dea223b6c2125e94319ae001ce (patch)
treedc0c0c291054a102e62a00ee7e95134a63266267 /phpBB/phpbb/db/driver/driver.php
parent8da31332381b572f8d03c63d4c32a4f32ed8775f (diff)
downloadforums-03639c081cfe92dea223b6c2125e94319ae001ce.tar
forums-03639c081cfe92dea223b6c2125e94319ae001ce.tar.gz
forums-03639c081cfe92dea223b6c2125e94319ae001ce.tar.bz2
forums-03639c081cfe92dea223b6c2125e94319ae001ce.tar.xz
forums-03639c081cfe92dea223b6c2125e94319ae001ce.zip
[ticket/11866] Update some occurances of phpbb_db_ to new Namespace
PHPBB3-11866
Diffstat (limited to 'phpBB/phpbb/db/driver/driver.php')
-rw-r--r--phpBB/phpbb/db/driver/driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/driver/driver.php b/phpBB/phpbb/db/driver/driver.php
index cd960bc65a..53d39e9127 100644
--- a/phpBB/phpbb/db/driver/driver.php
+++ b/phpBB/phpbb/db/driver/driver.php
@@ -84,7 +84,7 @@ class driver
// Fill default sql layer based on the class being called.
// This can be changed by the specified layer itself later if needed.
- $this->sql_layer = substr(get_class($this), strlen('phpbb_db_driver_'));
+ $this->sql_layer = substr(get_class($this), strlen('phpbb\db\driver\\'));
// Do not change this please! This variable is used to easy the use of it - and is hardcoded.
$this->any_char = chr(0) . '%';