Quote:
Originally Posted by 04wayne
I have an error with my lottery - when I go to buy the ticket, it says this:
Warning: Cannot use a scalar value as an array in [path]/pointmarket/gamble_access.php on line 187
|
Whoops, okay here is the fix for this:
Open /pointmarket/gamble_access.php
Find:
PHP Code:
$vbulletin->db->query_read("insert into " . TABLE_PREFIX . "market_gamble_history set userid='$userid', coupon='$cid[id]' date='$date', gameid='$type', cost='$lot[cost]', lottoid='$lottoid', status='1'");
Change to:
PHP Code:
$vbulletin->db->query_read("insert into " . TABLE_PREFIX . "market_gamble_history set userid='$userid', coupon='$cid[id]', date='$date', gameid='$type', cost='$lot[cost]', lottoid='$lottoid', status='1'");
It was just missing a comma after the coupon='$cid[id]' part.