mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
Update settings File naming consistancy to match the rest of ITFlow naming
This commit is contained in:
21
inc_all_settings.php
Normal file
21
inc_all_settings.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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("settings_side_nav.php");
|
||||
include("inc_wrapper.php");
|
||||
include("inc_alert_feedback.php");
|
||||
include("pagination_head.php");
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user