Change all "AND" / "OR" to && / ||

This commit is contained in:
Marcus Hill
2022-04-14 18:40:51 +01:00
parent ea041a0371
commit ca629801af
35 changed files with 86 additions and 86 deletions

View File

@@ -73,7 +73,7 @@ if (empty($_GET['canned_date'])) {
$_GET['canned_date'] = 'custom';
}
if ($_GET['canned_date'] == "custom" AND !empty($_GET['dtf'])) {
if ($_GET['canned_date'] == "custom" && !empty($_GET['dtf'])) {
$dtf = mysqli_real_escape_string($mysqli, $_GET['dtf']);
$dtt = mysqli_real_escape_string($mysqli, $_GET['dtt']);
} elseif ($_GET['canned_date'] == "today") {