summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_db_sqlite.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-11-25 17:35:53 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-11-25 17:35:53 +0100
commit9be2f43d02cd54340fc64c9b2cee9cfa94b49034 (patch)
tree6972efcd24b6ac12643a93ae19fbcab5411938fd /program/lib/Roundcube/rcube_db_sqlite.php
parent5352b55779aadc8b4c665daf69c7a27767f17d78 (diff)
Define more (uniquely prefixed) constants for Roundcube directories in order to enhance the interoperability of the Roundcube framework
Diffstat (limited to 'program/lib/Roundcube/rcube_db_sqlite.php')
-rw-r--r--program/lib/Roundcube/rcube_db_sqlite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db_sqlite.php b/program/lib/Roundcube/rcube_db_sqlite.php
index 9aa67d0fd..65dcb6d6e 100644
--- a/program/lib/Roundcube/rcube_db_sqlite.php
+++ b/program/lib/Roundcube/rcube_db_sqlite.php
@@ -66,7 +66,7 @@ class rcube_db_sqlite extends rcube_db
// Initialize database structure in file is empty
if (!empty($dsn['database']) && !filesize($dsn['database'])) {
- $data = file_get_contents(INSTALL_PATH . 'SQL/sqlite.initial.sql');
+ $data = file_get_contents(RCUBE_INSTALL_PATH . 'SQL/sqlite.initial.sql');
if (strlen($data)) {
$this->debug('INITIALIZE DATABASE');