Quote:
Originally posted by a43079
I installed it and i get this error
Fatal error: Unsupported operand types in C:\Program Files\Apache Group\Apache2\htdocs\forums\store.php on line 113
line 113 is
Code:
$costpercent=$DB_site->query_first("SELECT storecost FROM usergroup WHERE usergroupid=$bbuserinfo[usergroupid]");
$aw[costs] = round($aw[costs] * ($costpercent/100));
|
Gah another stupid mistake. Fixed on my own forums but put it wrong here.
To fix change
PHP Code:
($costpercent/100)
to
PHP Code:
($costpercent[storecost]/100)
Instructions updated.