Fix display of comments when a threaded comment is clicked on in threaded comment mode. We were passing in one too many parameters to a function call and including comment.php multiple times.

This commit is contained in:
Chris Morgan
2005-08-24 00:29:34 +00:00
committed by WineHQ
parent 371327cb87
commit 62b4660558

View File

@@ -10,7 +10,7 @@
*/
include("path.php");
include(BASE."include/incl.php");
require(BASE."include/comment.php");
require_once(BASE."include/comment.php");
apidb_header("Comments");
@@ -20,7 +20,7 @@ if(!is_numeric($_REQUEST['appId']) OR !is_numeric($_REQUEST['versionId']) OR (is
exit;
}
view_app_comments($_REQUEST['appId'], $_REQUEST['versionId'], $_REQUEST['threadId']);
view_app_comments($_REQUEST['versionId'], $_REQUEST['threadId']);
apidb_footer();
?>