tbrehm
2010-09-10 ed3796edefc8266aa2a3a71639a194deceffc3d5
Fixed a small bug in the nav.php which tries to lookup a custom module config file even if no module is selected and  enabled the dashboard module for the admin user by default after installation.
2 files modified
4 ■■■■ changed files
install/sql/ispconfig3.sql 2 ●●● patch | view | raw | blame | history
interface/web/nav.php 2 ●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql
@@ -1328,7 +1328,7 @@
-- Dumping data for table `sys_user`
-- 
INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `language`, `groups`, `default_group`, `client_id`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'admin,client,mail,monitor,sites,dns,tools,help', 'mail', 'default', 'admin', 1, 'en', '1,2', 1, 0);
INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `language`, `groups`, `default_group`, `client_id`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'dashboard,admin,client,mail,monitor,sites,dns,tools,help', 'dashboard', 'default', 'admin', 1, 'en', '1,2', 1, 0);
-- --------------------------------------------------------
interface/web/nav.php
@@ -80,7 +80,7 @@
//** Side Naviation
if(isset($_GET['nav']) && $_GET['nav'] == 'side') {
    if(is_file($_SESSION['s']['module']['name'].'/lib/custom_menu.inc.php')) {
    if(isset($_SESSION['s']['module']['name']) && is_file($_SESSION['s']['module']['name'].'/lib/custom_menu.inc.php')) {
        include_once($_SESSION['s']['module']['name'].'/lib/custom_menu.inc.php');
    } else {