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

@@ -5,7 +5,7 @@ include("functions.php");
$ip = trim(strip_tags(mysqli_real_escape_string($mysqli,get_ip())));
$user_agent = strip_tags(mysqli_real_escape_string($mysqli,$_SERVER['HTTP_USER_AGENT']));
if(isset($_GET['id']) AND isset($_GET['key'])){
if(isset($_GET['id']) && isset($_GET['key'])){
$item_id = intval($_GET['id']);
$item_key = trim(strip_tags(mysqli_real_escape_string($mysqli,$_GET['key'])));
@@ -13,7 +13,7 @@ if(isset($_GET['id']) AND isset($_GET['key'])){
$row = mysqli_fetch_array($sql);
// Check result
if(mysqli_num_rows($sql) !== 1 OR !$row){
if(mysqli_num_rows($sql) !== 1 || !$row){
exit("No file.");
}
@@ -23,7 +23,7 @@ if(isset($_GET['id']) AND isset($_GET['key'])){
}
// Check item share is active & hasn't been viewed too many times
if($row['item_active'] !== "1" OR $row['item_views'] >= $row['item_view_limit']){
if($row['item_active'] !== "1" || $row['item_views'] >= $row['item_view_limit']){
exit("Item cannot be viewed at this time.");
}
@@ -40,7 +40,7 @@ if(isset($_GET['id']) AND isset($_GET['key'])){
$file_sql = mysqli_query($mysqli, "SELECT * FROM files WHERE file_id = '$item_related_id' AND file_client_id = '$client_id' LIMIT 1");
$file_row = mysqli_fetch_array($file_sql);
if(mysqli_num_rows($file_sql) !== 1 OR !$file_row){
if(mysqli_num_rows($file_sql) !== 1 || !$file_row){
exit("No file.");
}