projects
/
hmb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
986561a
)
Bugfix
secure
author
Richard Whitehouse
<richardwhiuk@richardwhiuk.com>
Fri, 4 Feb 2011 23:57:54 +0000
(23:57 +0000)
committer
Richard Whitehouse
<richardwhiuk@richardwhiuk.com>
Fri, 4 Feb 2011 23:57:54 +0000
(23:57 +0000)
index.php
patch
|
blob
|
history
diff --git
a/index.php
b/index.php
index d7efa6fb996fe10e2f0f4b2286c8eb27e704b938..40cf29044d18663b67e2b57bd99c505f70873de8 100644
(file)
--- a/
index.php
+++ b/
index.php
@@
-329,7
+329,7
@@
class Purchase {
$stmt->bind_result($id, $ticket, $order, $price, $name);
$purchases = array();
while($stmt->fetch()){
- $purchases[$id] = new Purchase($id, $
ticket, $order
, $price, $name);
+ $purchases[$id] = new Purchase($id, $
order, $ticket
, $price, $name);
}
$stmt->close();
return $purchases;