--- nfo/site/htdocs/index.php 2004/08/30 01:48:30 1.3 +++ nfo/site/htdocs/index.php 2004/08/30 04:21:55 1.4 @@ -4,7 +4,7 @@ --- Main index and content access page. -------------------------------------------------------------------------------- --- rabit, 01:28 24.08.2004 ---- $Id: index.php,v 1.3 2004/08/30 01:48:30 rabit Exp $ +--- $Id: index.php,v 1.4 2004/08/30 04:21:55 rabit Exp $ ------------------------------------------------------------------------------*/ include('inc/common/common.php.inc'); @@ -14,12 +14,16 @@ $contentkeyname = (isset($_GET['ck']) ? $_GET['ck'] : ''); +$language_id = (isset($_GET['li']) ? $_GET['li'] : ''); + $outputtype = (isset($_GET['ot']) ? $_GET['ot'] : ''); //------------------------------------------------------------------------------ if(!$contentkeyname) $contentkeyname = 'Home'; +if(!$language_id) $language_id = 1; + if(!$outputtype) $outputtype = 'html'; //------------------------------------------------------------------------------ @@ -39,7 +43,7 @@ default: // Generate a HTML page: - common_page($contentkeyname); + common_page($contentkeyname, $language_id); }