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

18 lines
390 B
PHP
Raw Normal View History

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