22 lines
601 B
PHP
22 lines
601 B
PHP
<?php
|
|
/************************************************************/
|
|
/* view comments */
|
|
/* */
|
|
/* script expects appId, versionId and threadId as argument */
|
|
/************************************************************/
|
|
|
|
/*
|
|
* application environment
|
|
*/
|
|
include("path.php");
|
|
include(BASE."include/incl.php");
|
|
include(BASE."include/filter.php");
|
|
require_once(BASE."include/comment.php");
|
|
|
|
apidb_header("Comments");
|
|
|
|
view_app_comments($aClean['iVersionId'], $aClean['iThreadId']);
|
|
|
|
apidb_footer();
|
|
?>
|