34 lines
734 B
PHP
34 lines
734 B
PHP
<?PHP
|
|
/*
|
|
# Fuer debugging
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', 1);
|
|
#echo __LINE__."<br>";
|
|
*/
|
|
|
|
include_once 'classes/lg-on_Smarty.class.php';
|
|
$smarty = new lgon_Smarty();
|
|
require_once("config.inc.php");
|
|
$templatename = substr(basename($_SERVER['PHP_SELF']),0,-3)."html";
|
|
require_once "language/german.inc.php";
|
|
|
|
$eid = $_GET['eid'];
|
|
if(isset($_GET['suchart'])){
|
|
$suchart = $_GET['suchart'];
|
|
}else{
|
|
$suchart = "";
|
|
}
|
|
|
|
if(isset($_GET['inhalt_hig'])){
|
|
$inhalt_hig = $_GET['inhalt_hig'];
|
|
}else{
|
|
$inhalt_hig = "";
|
|
}
|
|
|
|
|
|
$smarty->assign('lue_ansicht_eid', "$eid");
|
|
$smarty->assign('lue_ansicht_suchart', "$suchart");
|
|
$smarty->assign('lue_ansicht_inhalt_hig', "$inhalt_hig");
|
|
|
|
$smarty->display("$template/$templatename");
|
|
?>
|