diff options
author | 2009-07-21 18:32:55 -0400 | |
---|---|---|
committer | 2009-07-21 18:32:55 -0400 | |
commit | d9e451fc01041dcbbc7558325c52783abf0efadd (patch) | |
tree | fb4e11774286c18da57ccc4130af2d466cced94f /shared | |
parent | Added bkisofs ISO manipulation library and wrote CLI wrapper for it (diff) | |
download | ingenue-d9e451fc01041dcbbc7558325c52783abf0efadd.tar.gz ingenue-d9e451fc01041dcbbc7558325c52783abf0efadd.tar.bz2 ingenue-d9e451fc01041dcbbc7558325c52783abf0efadd.zip |
Integrated bkisofs-cli into livecd and installcd bundlers, fixed various things in bkisofs-cli and the backend
Diffstat (limited to 'shared')
-rw-r--r-- | shared/classes/0sql_row_obj.php | 2 | ||||
-rw-r--r-- | shared/config.php | 2 | ||||
-rw-r--r-- | shared/include/paths.php | 1 |
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); } |