Commit 1c9626ea131946b0c41fc863e89b2e08b53e11e4
- Diff rendering mode:
- inline
- side by side
Belokan.php
(1 / 1)
|   | |||
| 40 | 40 | $ctrlInstance = new $ctrlClass($ctrl, $action); | |
| 41 | 41 | $RESTCtrl = $ctrlInstance instanceof Belokan_REST_Controller; | |
| 42 | 42 | ||
| 43 | if (0 && !$RESTCtrl && !method_exists($ctrlClass, $actionMethod)) { | ||
| 43 | if (!$RESTCtrl && !method_exists($ctrlClass, $actionMethod)) { | ||
| 44 | 44 | if ($logBelokan) | |
| 45 | 45 | $log->add('Belokan', 'Request unknown action ('.$action.') for controller '.$ctrl.'. HTTP 404 error generated.'); | |
| 46 | 46 | $actionMethod = 'e404'; |
Controller.php
(1 / 1)
|   | |||
| 4 | 4 | Licensed under GNU LGPL | |
| 5 | 5 | http://gitorious.org/projects/belokan | |
| 6 | 6 | --- | |
| 7 | Belokan/Controlle.php: | ||
| 7 | Belokan/Controller.php: | ||
| 8 | 8 | Controlle system | |
| 9 | 9 | */ | |
| 10 | 10 |

