// Routes for dispatcher (part 2)

This commit is contained in:
rMalie
2011-07-25 20:16:53 +00:00
parent 611b180b82
commit 3a97b4b6f3
5 changed files with 80 additions and 65 deletions
+3 -3
View File
@@ -487,9 +487,9 @@ EOF;
echo '<br /><select id="em_list_'.$shopID.'">';
// @todo do something better with controllers
Dispatcher::loadControllers();
ksort(Dispatcher::$controllers);
foreach (Dispatcher::$controllers as $k => $v)
$controllers = Dispatcher::getControllers();
ksort($controllers);
foreach ($controllers as $k => $v)
{
echo '<option value="'.$k.'">'.$k.'</option>';
}