8
OK. I think I found it.
comment_new.php
Line 29
Change:
$com_itemid = isset($HTTP_GET_VARS['com_itemid']) ? intval($HTTP_GET_VARS['com_itemid']) : 0;
to:
$com_itemid = isset($_GET['com_itemid']) ? intval($_GET['com_itemid']) : 0;
HTTP_GET_VARS is depracated in PHP 5, so hopefully this should fix it. Please let me know.
This appears to be the only instance, but I will run through the module to check for any other potential PHP 5 pitfalls.
A thread is for life. Not just for Christmas.