* Modify home btn title.

This commit is contained in:
caoyanyi
2023-02-23 17:20:17 +08:00
parent 455fa1d618
commit 1be6a534a8
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ if(!helper::hasFeature('waterfall')) $config->disableFeature = array('design', '
$config->dev->disableMainMenu = array('project', 'product', 'execution');
$config->dev->projectMenus = array('project', 'scrum', 'waterfall', 'kanbanProject');
$config->dev->hideMainMenu = array('admin');
$config->dev->hideMainMenu = array('admin', 'kanban');
if($config->vision == 'lite')
{
$config->dev->projectMenus = array('project', 'kanbanProject');
+5 -2
View File
@@ -118,8 +118,11 @@ class dev extends control
$moduleName = $module . 'SubMenu';
}
if($type == 'tag' and empty($module)) $module = 'my';
if($type == 'tag' and empty($method)) $method = 'todo';
if($type == 'tag')
{
if(empty($module)) $module = 'my';
if(empty($method)) $method = 'todo';
}
if($this->server->request_method == 'POST')
{