Quote:
Originally Posted by N3v3R
when i check mark the 'save copy' by default option in the profile i get this error
Warning: Invalid argument supplied for foreach() in [path]/includes/class_core.php on line 1774
its located at the top of the redirect page. any thoughts on it?
im using 3.7.5
|
I'm getting the same problem. I've skimmed through the code to try and work out what the problem is and as far as I can tell it's something to do with the delete original PM feature passing bad arguments to the GPC cleaner.
A fix would certainly be appreciated.
EDIT: 3.7.2 here, by the way.
EDIT2: Found the problem. In product-psi_advpmoptions.xml, on line 245:
Code:
$vbulletin->input->clean_array_gpc('p', 'advpmoptions_savecopy', TYPE_UINT);
Should be
Code:
$vbulletin->input->clean_gpc('p', 'advpmoptions_savecopy', TYPE_UINT);