Commit e2bf8da2 authored by Imran Hussain's avatar Imran Hussain
Browse files

Fix a typo.

parent 47ca4f1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ if(!empty($_REQUEST['sid'])&&!empty($_REQUEST['transactionID'])){

		// probe the db for some info thatwe want to use in the if statements below
		$tmpresult = $sucsDB->Execute("SELECT * FROM members WHERE sid=?", array($sid));
		$singuptmpresult = $sucsDB->Execute("SELECT * FROM signup WHERE sid=?", array($sid));
		$signuptmpresult = $sucsDB->Execute("SELECT * FROM signup WHERE sid=?", array($sid));

		// check to see if they are already a valid and paid member
		if($tmpresult->fields["sid"] == $sid && $tmpresult->fields["paid"] == paidUntil(time())){