Initial revision

This commit is contained in:
Jeremy Newman
2004-03-15 16:22:00 +00:00
commit 8f28ae10c4
122 changed files with 8116 additions and 0 deletions

21
commentview.php Normal file
View File

@@ -0,0 +1,21 @@
<?
/*=========================================================================
*
* view comments
*
* script expects appId, versionId and threadId as argument
*
*/
include("path.php");
include(BASE."include/"."incl.php");
require(BASE."include/"."comments.php");
apidb_header("Comments");
view_app_comments($appId, $versionId, $threadId);
apidb_footer();
?>