
11-03-2004, 11:46 PM
|
 |
|
|
Join Date: Aug 2004
Location: Portland, OR
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
yes, the only place, actually.
thanks, i'll check out the fix!
Quote:
Originally Posted by Link14716
Is that the only place a ' error occurs?
Either way, fix it by changing this (in uttstore/action.denyforumaccess.php):
PHP Code:
uttstore_add_history($action['actionid'], $action['cost'], $userdiscount, $action['tax'], $totalcost, $_REQUEST['userid'], '0', $forum['title']);
To this:
PHP Code:
uttstore_add_history($action['actionid'], $action['cost'], $userdiscount, $action['tax'], $totalcost, $_REQUEST['userid'], '0', addslashes($forum['title']));
EDIT: Fixed all instances of this locally. The fixes will be in the next release.
|
|