summaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/classes/0sql_row_obj.php2
-rw-r--r--shared/config.php2
-rw-r--r--shared/include/paths.php1
3 files changed, 3 insertions, 2 deletions
diff --git a/shared/classes/0sql_row_obj.php b/shared/classes/0sql_row_obj.php
index a86552a..89a7382 100644
--- a/shared/classes/0sql_row_obj.php
+++ b/shared/classes/0sql_row_obj.php
@@ -271,7 +271,7 @@ abstract class sql_row_obj { // If the name of this class changes, it must be up
}
$cols_filled++;
} elseif ($from_db) {
- throw new Exception('from_array called with $from_db=true, but column '.$name.' not specified.');
+ throw new Exception('from_array called with $from_db=true, but column `'.$name.'` not specified.');
}
}
return $cols_filled;
diff --git a/shared/config.php b/shared/config.php
index 3920ad1..82efa59 100644
--- a/shared/config.php
+++ b/shared/config.php
@@ -14,7 +14,7 @@ $debug=true; // Whether to print debugging information
// $timezone_root='/usr/share/zoneinfo'; // Directory to search for timezone data (sys-libs/timezone-data)
$emailfrom='noreply@gentoo.org'; // Used as the From: field in emails
$check_email_dns=true; // Use DNS to check the domain of submitted emails for validity
-// $split_setup=false; // Whether the frontend and backend are running on different hosts
+$split_setup=true; // Whether the frontend and backend are running on different hosts
// Frontend options:
// $registration=false; // Whether users can create new accounts without an invite
// $invite='admin'; // Who can use the invite function: true or 'user'=users; admin=admins; false=nobody
diff --git a/shared/include/paths.php b/shared/include/paths.php
index 1efc9d3..d4220bf 100644
--- a/shared/include/paths.php
+++ b/shared/include/paths.php
@@ -6,6 +6,7 @@ $paths['frontend']=realpath($paths['root'].'/frontend');
$paths['work']=realpath($paths['root'].'/work');
$paths['completed']=realpath($paths['root'].'/completed');
$paths['cache']=realpath($paths['root'].'/cache');
+$paths['lib']=realpath($paths['root'].'/lib');
foreach ($paths as $name => $dest) {
define(strtoupper($name), $dest);
}