1
0
mirror of https://github.com/fspc/biketree.git synced 2025-02-22 08:53:24 -05:00

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

View File

@ -155,6 +155,6 @@ if($action == "insert"){ echo "<center><h2>Important!!!</h2><h2>Tag this bike as
<a href="index.php">Manage Bikes--></a>
<br>
<a href="/pos/home.php">Go Home--></a></center>
<a href="/home.php">Go Home--></a></center>
</body>
</html>

Binary file not shown.

View File

@ -88,7 +88,7 @@ foreach($field as $key=>$value) { $$key = stripslashes($value); }
}
header( 'Location: /pos/home.php' ) ;
header( 'Location: /home.php' ) ;
?>

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');
}
?>