Variable handling in template engine rewritten
[core.git] / inc / classes / main / menu / class_BaseMenu.php
index 8041813b3f5151eb955eed43db010f55c585a044..4dd1d9c4c4a00ea5c5092b0879c2f71c0a9a5536 100644 (file)
@@ -55,7 +55,7 @@ class BaseMenu extends BaseFrameworkSystem {
                // Load the menu template for this page
                try {
                        $this->getTemplateInstance()->loadMenuTemplate($page . '_menu_entries');
-               } catch (FileNotFoundException $e) {
+               } catch (FileIoException $e) {
                        // @TODO Should we log it here? We should, because it will be silently ignored.
                }
 
@@ -64,7 +64,7 @@ class BaseMenu extends BaseFrameworkSystem {
 
                // Render it here
                $this->getTemplateInstance()->renderXmlContent($menuContent);
-               die('!OK');
+               //die('!OK');
        }
 
        /**