13
Alrighty... In the last couple weeks I've straightened out my site and gotten my latest family pics updated to my site (gotta have your priorities
). I now have time to look into the XoopsGallery problem with comments (again).
Knight--I've verified what you're talking about and can see exactly why we're still having problems. I've determined that I can update the "$extra_params .=..." line and correct the problem.
Note that this would affect *all* modules that store additional information with a comment.
In /include/comment_post.php, find the line 57 and change $HTTP_GET_VARS to $HTTP_POST_VARS as follows:
foreach ($comment_config['extraParams'] as $extra_param) {
$extra_params .= isset($HTTP_POST_VARS[$extra_param]) ? $extra_param.'='.$HTTP_POST_VARS[$extra_param].'&' : $extra_param.'=&';
}
I'll post this to their bug database too.