Quote:
Originally Posted by Aramist
Me again....
I have solved my last report.
Changing at line 525 and 526 in admincp/market.php:
Code:
$finduser = $db->fetch_array($db->query_read("select userid, username from user where userid='$category[userid]'"));
$finditem = $db->fetch_array($db->query_read("select name, type from market_store where marketid='$category[marketid]'"));
To:
Code:
$finduser = $db->fetch_array($db->query_read("select userid, username from " . TABLE_PREFIX . "user where userid='$category[userid]'"));
$finditem = $db->fetch_array($db->query_read("select name, type from " . TABLE_PREFIX . "market_store where marketid='$category[marketid]'"));
I'm not sure if I'm correct, but, in my case, solved the problem.
Ty
|
The way you fixed the error is the correct way, I've already applied both of your findings for the next release. Keep up the good work on finding bugs as I truly believe the next release will be the last before I mark this thing completely stable.