Removes /pos from a few header.

This commit is contained in:
Jonathan Rosenbaum
2017-09-05 07:07:11 +00:00
parent 0136dddc70
commit 412fd0c8cf
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ foreach($field as $key=>$value) { $$key = stripslashes($value); }
}
header( 'Location: /pos/home.php' ) ;
header( 'Location: /home.php' ) ;
?>
+2 -2
View File
@@ -41,9 +41,9 @@ if(isset($_GET[switchID])){
}
if($isAdmin){
header('Location: /pos/login.php');
header('Location: /login.php');
}else{
header('Location: /pos/home.php');
header('Location: /home.php');
}
?>