Quote:
Originally Posted by Hoffi
I just get this Error too. Did someone solve this?
|
Yes there is an XML product in the thread some where.
I have ab ug report. I tried to member donate and got this error when i clicked cofnirm:
Quote:
Warning: implode(): Bad arguments. in /includes/functions_ushop.php on line 71
Warning: Invalid argument supplied for foreach() in /includes/functions_ushop.php on line 89
Warning: Cannot modify header information - headers already sent by (output started at /includes/class_core.php:2984) in /ushop.php on line 144
|
Ok I am using this condition:
PHP Code:
!in_array($threadinfo[forumid], array(42,44,36))
for the double posting hack and it seems this is what causes the conflict.
EDIT: So I changed the codnitional to:
PHP Code:
!in_array($threadinfo['forumid'], array(42,44,36))
and now no conflict.