diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-10-27 19:44:10 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-10-27 19:44:10 -0400 |
commit | 29a3ffb99435827d5a7ea6886ac22bd2ee18d593 (patch) | |
tree | 511928e110e52d210c9707ab22e952b01b3368b1 /index.php | |
parent | 40bef9550687ed2b5a0c55feafc0b0dd015177e2 (diff) |
I think this fixes everything, but it now depends on PHP 5.3+
The introduction of the dependency on PHP 5.3 is that lib/Singleton.class
uses `get_called_class()'
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -52,7 +52,9 @@ require_once('View.class.php'); require_once('Controller.class.php'); // Check if we have a database configuration /////////////////////////////////// +$conf_file = BASEPATH.'/conf.php'; if (file_exists($conf_file)) { + require_once('Database.class.php'); new Database($conf_file); session_start(); } else { |