Commit 2e18b63e34b2ae01ff6febcefc9629c67e3673be

  • avatar
  • p4bl0 <pablo.rauzy @gm…l.com>
  • Tue Mar 03 11:32:34 CET 2009
correcting little mistakes
  
55 http://gitorious.org/projects/belokan
66 ---
77 Belokan/Belokan.php:
8 Belokan core class + __autoload
8 Belokan core class
99*/
1010
1111class Belokan {
4343
4444 if (!$RESTCtrl && !method_exists($ctrlClass, $actionMethod)) {
4545 if ($logBelokan)
46 $log->add('Belokan', '['.date('Y-m-d H:i').'] Request undefined action ('.$action.') for page '.$ctrl.'. HTTP 404 error generated.');
46 $log->add('Belokan', '['.date('Y-m-d H:i').'] Request undefined action ('.$action.') for controller '.$ctrl.'. HTTP 404 error generated.');
4747 $actionMethod = 'e404';
4848 $ctrlInstance = new HttpErrorsController('HttpErrors', 'e404');
4949 }