Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #52 from ubidzz/patch-4
Browse files Browse the repository at this point in the history
Paying for multiple items (FIX)
  • Loading branch information
Chris Dickenson committed Jul 16, 2014
2 parents fd4452f + 957a239 commit 39a14d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pay.php
Expand Up @@ -49,7 +49,7 @@
FROM " . $DBPrefix . "auctions a
LEFT JOIN " . $DBPrefix . "winners w ON (a.id = w.auction)
LEFT JOIN " . $DBPrefix . "users u ON (u.id = w.seller)
WHERE a.id = " . intval($_POST['pfval']);
WHERE w.id = " . intval($_POST['pfval']);
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);

Expand Down

0 comments on commit 39a14d5

Please sign in to comment.