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

21 lines
574 B
PHP

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