49
"O.K. Try this.
go to the file classifieds/class/pictures.php around lines 396 thru 401 look for these lines:
if ( (str_replace('.', '', PHP_VERSION)) > 499 ) {
$form->assign($xoopsTpl);
} else {
$form->display();
}
Try changing those lines to this:
//$form->assign($xoopsTpl);
$form->display(); this one worked fine!!!!
if that does not work try this:
$form->assign($xoopsTpl);
//$form->display();
Let me know what happens.
Thanks,
John"
That did the trick for me, Thanks for John!