diff --git a/Changelog b/Changelog index 7f1afac12..9ca0a0b4d 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-05-04 DariusIII + * Chg: Remove main, usefull and article menus from basepage controller * Chg: Update utils-admin.js with tinymce 2018-05-03 DariusIII * Chg: Adjust code in template files diff --git a/app/Http/Controllers/BasePageController.php b/app/Http/Controllers/BasePageController.php index fcf4083a7..64b65f346 100644 --- a/app/Http/Controllers/BasePageController.php +++ b/app/Http/Controllers/BasePageController.php @@ -284,10 +284,6 @@ class BasePageController extends Controller $this->smarty->assign('recentforumpostslist', Forumpost::getPosts(Settings::settingValue('..showrecentforumposts'))); } - $this->smarty->assign('main_menu', $this->smarty->fetch('mainmenu.tpl')); - $this->smarty->assign('useful_menu', $this->smarty->fetch('usefullinksmenu.tpl')); - $this->smarty->assign('article_menu', $this->smarty->fetch('articlesmenu.tpl')); - if (! empty($this->userdata)) { $parentcatlist = Category::getForMenu($this->userdata['categoryexclusions'], $this->userdata['rolecategoryexclusions']); } else {