diff options
author | Filipp Lepalaan <filipp@mac.com> | 2011-07-14 00:30:05 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2011-07-14 00:30:05 +0300 |
commit | 84b13d3d2642ad79369b33772c31c3e51d46d36f (patch) | |
tree | da76d831a24112660da083dca8e6620bb8fca3eb /MainApp.php | |
parent | 721154b01441db5fefaf62e9f2ea2c990a4a0d37 (diff) | |
download | main-84b13d3d2642ad79369b33772c31c3e51d46d36f.tar.gz main-84b13d3d2642ad79369b33772c31c3e51d46d36f.tar.bz2 main-84b13d3d2642ad79369b33772c31c3e51d46d36f.zip |
Added MainDb::one()
Diffstat (limited to 'MainApp.php')
-rw-r--r-- | MainApp.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/MainApp.php b/MainApp.php index a74c6d4..0e79f96 100644 --- a/MainApp.php +++ b/MainApp.php @@ -35,8 +35,8 @@ class MainApp // dispatch requested controller $controller = self::classname($controller); - $c = new $controller(); - + $c = new $controller; +// var_dump($c); // assume no method name was given, try $param // URL format is always controller/param/action if (method_exists($c, $action)) { @@ -144,7 +144,7 @@ class MainApp static function error($msg) { $err = array('error' => $msg); - header('HTTP/1.0 500 Internal Server Error'); +// header('HTTP/1.0 500 Internal Server Error'); // send it to the browser //self::json($err); //trigger_error($msg, E_USER_NOTICE); @@ -335,7 +335,8 @@ class MainApp } $lang_file_content = file_get_contents($lang_file); - /* Load the language file as a JSON object and transform it into an associative array */ + /* Load the language file as a JSON object + and transform it into an associative array */ $translations = json_decode($lang_file_content, TRUE); } @@ -353,7 +354,7 @@ class MainApp function __autoload($name) { $class_name = MainApp::classname($name); - + include_once "{$class_name}.php"; if (!class_exists($class_name)) { |