Update settings File naming consistancy to match the rest of ITFlow naming

This commit is contained in:
johnnyq
2022-09-21 12:30:04 -04:00
parent 83a82d2995
commit e5a4451bb9
28 changed files with 59 additions and 79 deletions

View File

@@ -1,21 +0,0 @@
<?php
include("config.php");
include_once("functions.php");
include("check_login.php");
if($session_user_role != 3){
$_SESSION['alert_type'] = "danger";
$_SESSION['alert_message'] = "You are not permitted to do that!";
header("Location: index.php");
exit();
}
include("header.php");
include("top_nav.php");
include("admin_side_nav.php");
include("inc_wrapper.php");
include("inc_alert_feedback.php");
include("pagination_head.php");
?>