This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/commentview.php
2004-12-27 23:54:55 +00:00

21 lines
553 B
PHP

<?php
/************************************************************/
/* view comments */
/* */
/* script expects appId, versionId and threadId as argument */
/************************************************************/
/*
* application environment
*/
include("path.php");
include(BASE."include/"."incl.php");
require(BASE."include/"."comments.php");
apidb_header("Comments");
view_app_comments($appId, $versionId, $threadId);
apidb_footer();
?>