diff options
Diffstat (limited to 'application/controllers')
| -rw-r--r-- | application/controllers/BootmenuController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/controllers/BootmenuController.php b/application/controllers/BootmenuController.php index 9a212d6..abb046e 100644 --- a/application/controllers/BootmenuController.php +++ b/application/controllers/BootmenuController.php @@ -74,14 +74,14 @@ class BootmenuController extends Zend_Controller_Action foreach($bootmenuentries as $bootmenuentry){ $ar = array(); - $ar['title'] = $bootmenu->getTitle(); - $ar['id'] = $bootmenu->getID(); + $ar['title'] = $bootmenuentry->getTitle(); + $ar['id'] = $bootmenuentry->getID(); $cc['data'][] = $ar; } echo json_encode($cc); - // print_a($cc); + print_a($cc); } |
