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:
@@ -10,7 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
include("path.php");
|
include("path.php");
|
||||||
include(BASE."include/incl.php");
|
include(BASE."include/incl.php");
|
||||||
require(BASE."include/comment.php");
|
require_once(BASE."include/comment.php");
|
||||||
|
|
||||||
apidb_header("Comments");
|
apidb_header("Comments");
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ if(!is_numeric($_REQUEST['appId']) OR !is_numeric($_REQUEST['versionId']) OR (is
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
view_app_comments($_REQUEST['appId'], $_REQUEST['versionId'], $_REQUEST['threadId']);
|
view_app_comments($_REQUEST['versionId'], $_REQUEST['threadId']);
|
||||||
|
|
||||||
apidb_footer();
|
apidb_footer();
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user