mirror of https://github.com/itflow-org/itflow
Got ride of the side nav logic as this is not needed now as we modularized the includes
This commit is contained in:
parent
1829c7299e
commit
057e3a6cbd
|
|
@ -149,7 +149,7 @@ if(isset($_GET['client_id'])){
|
|||
|
||||
<?php
|
||||
|
||||
include("inc_side_nav.php");
|
||||
include("client_side_nav.php");
|
||||
include("inc_wrapper.php");
|
||||
include("inc_alert_feedback.php");
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ include_once("functions.php");
|
|||
include("check_login.php");
|
||||
include("header.php");
|
||||
include("top_nav.php");
|
||||
include("inc_side_nav.php");
|
||||
include("side_nav.php");
|
||||
include("inc_wrapper.php");
|
||||
include("inc_alert_feedback.php");
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
<?php
|
||||
|
||||
if(basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "client.php"){
|
||||
include("client_side_nav.php");
|
||||
//}elseif(basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "settings-general.php"){
|
||||
//include("admin_side_nav.php");
|
||||
}else{
|
||||
include("side_nav.php");
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Reference in New Issue