objectManager: Fix lower-case letter in 'email Text'
[NewAppDB.git] / commentview.php
blob7f2e87f2bee06464e9494070fdd1ccde037587c4
1 <?php
2 /************************************************************/
3 /* view comments */
4 /* */
5 /* script expects appId, versionId and threadId as argument */
6 /************************************************************/
8 /*
9 * application environment
11 require("path.php");
12 require(BASE."include/incl.php");
13 require_once(BASE."include/comment.php");
15 apidb_header("Comments");
17 Comment::view_app_comments($aClean['iVersionId'], $aClean['iThreadId']);
19 apidb_footer();