Fixed date error in cron.php regarding past due invoices

This commit is contained in:
root
2019-05-29 12:47:16 -04:00
parent 709f88e1ee
commit eddb065833
3 changed files with 9 additions and 13 deletions

View File

@@ -42,12 +42,17 @@
<?php include("top_nav.php"); ?>
<div id="wrapper">
<?php
if(basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "client.php" or basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "client_print.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)) == "client_print.php"){
}else{
include("side_nav.php");
}
?>
<div id="content-wrapper">