From 4b8af48052c514ca95227f28e8a2bd801bfb2f31 Mon Sep 17 00:00:00 2001 From: oesi Date: Thu, 28 May 2015 17:19:29 +0200 Subject: [PATCH 1/2] - Fehlermeldung am Infoterminal entfernt - Neuen Config Eintrag zum Ausblenden des Lageplans hinzugefuegt --- cis/infoterminal/index.php | 5 ++++- config/global.config-default.inc.php | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cis/infoterminal/index.php b/cis/infoterminal/index.php index 84b9677f5..5bc482e99 100644 --- a/cis/infoterminal/index.php +++ b/cis/infoterminal/index.php @@ -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 { diff --git a/config/global.config-default.inc.php b/config/global.config-default.inc.php index 3d87f5de7..55addac70 100644 --- a/config/global.config-default.inc.php +++ b/config/global.config-default.inc.php @@ -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); ?> From 730a20d373be0659b21dc1a636ed307167a4767c Mon Sep 17 00:00:00 2001 From: oesi Date: Thu, 28 May 2015 17:24:05 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Default=20Wert=20f=C3=BCr=20CIS=5FPRUEFUNG?= =?UTF-8?q?=5FMAIL=5FEMPFAENGER=5FANMEDLUNG=20ge=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/global.config-default.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/global.config-default.inc.php b/config/global.config-default.inc.php index 55addac70..e048b4fb7 100644 --- a/config/global.config-default.inc.php +++ b/config/global.config-default.inc.php @@ -141,8 +141,8 @@ define('PRESTUDENT_ID_DUMMY_STUDENT', 13478); //Legt fest ob die Option für alle Räume im Saalplan Dropdown angezeigt werden soll. (true|false) define('CIS_SAALPLAN_ALLERAEUME_OPTION', false); -//Legt fest ob Bestätigungsmails über eine Anmelung zu einer Prüfung an eine einzelne Person erfolgt oder an den jeweiligen Lektor. (Leerstring für jeweiligen Lektro); -define('CIS_PRUEFUNG_MAIL_EMPFAENGER_ANMEDLUNG',"p.vondrak"); +//Legt fest ob Bestätigungsmails über eine Anmelung zu einer Prüfung an eine einzelne Person erfolgt oder an den jeweiligen Lektor. (Leerstring für jeweiligen Lektor | uid); +define('CIS_PRUEFUNG_MAIL_EMPFAENGER_ANMEDLUNG',""); // Username fuer STIP Schnittstelle define('STIP_USER_NAME','stipendienstelle');