From 37b3fb4b1eb535fd7af9a45571ca950536c07ea7 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 14 Aug 2006 16:03:10 +0000 Subject: [PATCH] bug #181 --- www/wot.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/www/wot.php b/www/wot.php index e85bf4a..c980519 100644 --- a/www/wot.php +++ b/www/wot.php @@ -251,6 +251,22 @@ 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 + `to`='".$_SESSION['_config']['notarise']['id']."' AND + `awardeded`='$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) + { + $id = $oldid; + unset($oldid); + $_SESSION['_config']['error'] = _("Identical Assurance attempted, will not continue."); + } + } + + if($oldid == 6) + { $query = "insert into `notary` set `from`='".$_SESSION['profile']['id']."', `to`='".$_SESSION['_config']['notarise']['id']."', `points`='$newpoints', `awardeded`='$awarded',