mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Change all "AND" / "OR" to && / ||
This commit is contained in:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user