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/appbrowse.php
2009-08-05 14:58:50 +02:00

18 lines
390 B
PHP

<?php
/**
* Application browser.
*
* Optional parameters:
* - iCatId, shows applications that belong to the category identified by iCatId
*/
// application environment
require("path.php");
require(BASE."include/"."incl.php");
$iId = getInput('iCatId', $aClean);
util_redirect_and_exit(BASE."objectManager.php?sClass=category&iId=$iId&sAction=view&sTitle=Browse+Applications");
?>