diff --git a/www/wot.php b/www/wot.php index c980519..410c602 100644 --- a/www/wot.php +++ b/www/wot.php @@ -251,13 +251,13 @@ if(mysql_escape_string(stripslashes($_POST['date'])) == "") $_POST['date'] = date("Y-m-d H:i:s"); - $query = "select * from `notary` where from`='".$_SESSION['profile']['id']."' AND + $query = "select * from `notary` where `from`='".$_SESSION['profile']['id']."' AND `to`='".$_SESSION['_config']['notarise']['id']."' AND - `awardeded`='$awarded' AND + `awarded`='$awarded' AND `location`='".mysql_escape_string(stripslashes($_POST['location']))."' AND `date`='".mysql_escape_string(stripslashes($_POST['date']))."'"; $res = mysql_query($query); - if(mysql_num_rows($res) >= 0) + if(mysql_num_rows($res) > 0) { $id = $oldid; unset($oldid);