mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-05 14:19:27 +00:00
- Fehlermeldung am Infoterminal entfernt
- Neuen Config Eintrag zum Ausblenden des Lageplans hinzugefuegt
This commit is contained in:
@@ -67,6 +67,9 @@
|
||||
// Request Parameter
|
||||
// ------------------------------------------------------------------------------------------
|
||||
$timer=trim((isset($_REQUEST['timer']) ? $_REQUEST['timer']:0));
|
||||
if(!isset($ServiceTerminalDefaultRaumtyp))
|
||||
$ServiceTerminalDefaultRaumtyp='HS';
|
||||
|
||||
// Raumtyp
|
||||
$raumtyp_kurzbz=trim((isset($_REQUEST['raumtyp_kurzbz']) ? $_REQUEST['raumtyp_kurzbz']:$ServiceTerminalDefaultRaumtyp));
|
||||
// Saal - Raum
|
||||
@@ -196,7 +199,7 @@
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Linkes Auswahlmenue fuer Raumtypen
|
||||
// ------------------------------------------------------------------------------------------
|
||||
if(!is_null($ServiceTerminalRaumtypen))
|
||||
if(isset($ServiceTerminalRaumtypen) && !is_null($ServiceTerminalRaumtypen))
|
||||
$row_ort = $ServiceTerminalRaumtypen;
|
||||
else
|
||||
{
|
||||
|
||||
@@ -159,5 +159,9 @@ define('BEWERBERTOOL_DOKUMENTE_ANZEIGEN', true);
|
||||
define('BEWERBERTOOL_ZGV_ANZEIGEN', true);
|
||||
define('BEWERBERTOOL_BERUFSTAETIGKEIT_ANZEIGEN', true);
|
||||
|
||||
// Array mit Usern die nicht Kollidieren
|
||||
define('KOLLISIONSFREIE_USER',serialize(array('_DummyLektor')));
|
||||
|
||||
// Soll der Lageplan am Infoterminal angezeigt werden (true|false)
|
||||
define('CIS_INFOSCREEN_LAGEPLAN_ANZEIGEN', true);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user