diff --git a/cis/public/bibliothek_elektronischeressourcen.html b/cis/public/bibliothek_elektronischeressourcen.html index 8e8973ab3..881c0447a 100644 --- a/cis/public/bibliothek_elektronischeressourcen.html +++ b/cis/public/bibliothek_elektronischeressourcen.html @@ -48,7 +48,7 @@ Die Elektronische Zeitschriftenbibliothek ist ein Service der Universtitätsbibliothek Regensburg zur effektiven Nutzung wissenschaftlicher Volltextzeitschriften im Internet. Sie umfaßt ca. 40.000 verschiedene Titel, mehr als 19000 Fachzeitschriften sind im Volltext frei verfügbar. - Der Zugang ist derzeit nur von hausinternen Rechnern möglich + Der Zugang zu den mit einer gelben Ampel gekennzeichneten Volltext-Zeitschriften ist derzeit nur von hausinternen Rechnern möglich

Gratis e-books von verschiedenen Anbietern
@@ -58,7 +58,7 @@
Directory of Open Access Journals (Links zu frei zugänglichen wissenschaftlichen Volltext-Journals)

- Datenbanken und Zeitschriften mit medizinischem Schwerpunkt
+ BioMed Central (knapp 200 peer-reviewed Open Access Journals)
diff --git a/content/tempus.js.php b/content/tempus.js.php index faf00fe5d..2869da018 100644 --- a/content/tempus.js.php +++ b/content/tempus.js.php @@ -432,6 +432,22 @@ function KollisionStudentShow() { window.open('vilesci/lehre/stpl_benutzer_kollision_frameset.html', 'Kollision Student'); } +// **** +// * Zeigt das Fenster zur LVPlanWartung +// **** +function LVPlanWartungShow() +{ + window.open('vilesci/lehre/lvplanwartung.php', 'LVPLanWartung'); +} + +// **** +// * Zeigt das Fenster zur Kollisionspruefung mit Reservierungen +// **** +function ResCheckShow() +{ + window.open('vilesci/lehre/check/res_check.php', 'KollisionReservierung'); +} + // **** // * Oeffnet das Handbuch diff --git a/content/tempus.xul.php b/content/tempus.xul.php index 82075593c..4731071cb 100644 --- a/content/tempus.xul.php +++ b/content/tempus.xul.php @@ -57,6 +57,8 @@ echo ''; + + @@ -189,6 +191,18 @@ echo ''; label = "&menu-extras-kollisionstudent.label;" command = "menu-extras-kollisionstudent:command" accesskey = "&menu-extras-kollisionstudent.accesskey;"/> + + diff --git a/include/datum.class.php b/include/datum.class.php index ad14de97b..c77bd5b22 100644 --- a/include/datum.class.php +++ b/include/datum.class.php @@ -174,6 +174,7 @@ class datum return ''; $ts=''; + $error=false; //2008-12-31 if(ereg("([0-9]{4})-([0-9]{2})-([0-9]{2})",$datum, $regs)) @@ -202,9 +203,14 @@ class datum if($ts=='') { $ts = strtotime($datum); + if(!$ts || $ts==-1) + { + //wenn strtotime fehlschlaegt liefert diese -1 zurueck, ab php5.1.0 jedoch false + $error = true; + } } - if($ts!='' && $ts>0) + if($ts!='' && !$error) return date($format, $ts); return false; diff --git a/locale/de-AT/tempus.dtd b/locale/de-AT/tempus.dtd index 97d7b13f0..c93afa3e5 100644 --- a/locale/de-AT/tempus.dtd +++ b/locale/de-AT/tempus.dtd @@ -64,3 +64,11 @@ + + + + + + + + diff --git a/skin/images/Thumbs.db b/skin/images/Thumbs.db deleted file mode 100644 index 2c2f43039..000000000 Binary files a/skin/images/Thumbs.db and /dev/null differ