
Originally Posted by
danielcor
I am also getting this error in the code... As far as I can tell it is installed correctly...
Looking through the code, I cannot find a definition of strip_quotes_array anywhere, and i do see the call to array_walk in qbi_classes.php. I do have the database defines correct (without the database prefeix).
Can you provide the code for strip_quotes_array?
Thanks,
- Daniel
This is an error in the code
.
In qbi_classes.php, line 2446, please replace:
Code:
if (get_magic_quotes_gpc()) array_walk($this->config_data,'strip_quotes_array');
with:
Code:
if (get_magic_quotes_gpc()) stripslashes_array($this->config_data);
Please fix this if you are using QBI 3.00 or 3.01. I will include this fix in the next update. This error occurs when you save configuration changes on the Configuration page and will only affect you if you have magic_quotes_gpc turned on in your PHP configuration.
Thanks,
Adam
Bookmarks