diff --git a/cis/index.html b/cis/index.html
index 11a4ff9a2..42292afa6 100644
--- a/cis/index.html
+++ b/cis/index.html
@@ -11,7 +11,7 @@
-
+
diff --git a/cis/index.php b/cis/index.php
index a6faff14d..c5261d7ce 100644
--- a/cis/index.php
+++ b/cis/index.php
@@ -170,7 +170,7 @@ $db = new basis_db();
-
+
-
+
diff --git a/cis/private/bildupload.php b/cis/private/bildupload.php
index fe764e405..3ac72c1df 100644
--- a/cis/private/bildupload.php
+++ b/cis/private/bildupload.php
@@ -42,7 +42,7 @@ echo '
-
+
'.
cropCss().'
@@ -50,10 +50,10 @@ echo '
-
+
-
-
+
+
'.$p->t('profil/Bildupload').'
@@ -64,11 +64,11 @@ function resize($filename, $width, $height)
{
$ext = explode('.',$_FILES['bild']['name']);
$ext = strtolower($ext[count($ext)-1]);
-
+
// Hoehe und Breite neu berechnen
list($width_orig, $height_orig) = getimagesize($filename);
-
- if ($width && ($width_orig < $height_orig))
+
+ if ($width && ($width_orig < $height_orig))
{
$width = ($height / $height_orig) * $width_orig;
}
@@ -76,19 +76,19 @@ function resize($filename, $width, $height)
{
$height = ($width / $width_orig) * $height_orig;
}
-
- $image_p = imagecreatetruecolor($width, $height);
-
+
+ $image_p = imagecreatetruecolor($width, $height);
+
$image = imagecreatefromjpeg($filename);
-
+
//Bild nur verkleinern aber nicht vergroessern
if($width_orig>$width || $height_orig>$height)
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
- else
+ else
$image_p = $image;
-
+
imagejpeg($image_p, $filename, 80);
-
+
@imagedestroy($image_p);
@imagedestroy($image);
}
@@ -98,15 +98,15 @@ if(isset($_GET['person_id']))
{
$benutzer = new benutzer();
$benutzer->load($user);
-
+
if($benutzer->person_id!=$_GET['person_id'])
die($p->t('global/keineBerechtigungFuerDieseSeite'));
-
+
$fs = new fotostatus();
if($fs->akzeptiert($benutzer->person_id))
die($p->t('profil/profilfotoUploadGesperrt'));
}
-else
+else
die($p->t('global/fehlerBeiDerParameteruebergabe'));
echo '
';
@@ -135,7 +135,7 @@ function cropCss() {
The outer-most container in a typical Jcrop instance
If you are having difficulty with formatting related to styles
on a parent element, place any fixes here or in a like selector
-
+
You can also style this element if you want to add a border, etc
A better method for styling can be seen below with .jcrop-light
(Add a class to the holder and style elements for that extended class)
@@ -306,24 +306,24 @@ function cropCss() {
.simple-cropper-images{
width: 820px;
margin: 0 auto 20px;
-
+
}
-
+
.cropme{
background-image: url(../../skin/images/photoupload.png);
}
-
+
.cropme:hover{
-
+
}
-
+
.text{
font-family: arial;
font-size: 14px;
color: #4e4e4e;
margin-bottom: 20px;
}
-
+
.code{
font-family: arial;
font-size: 14px;
@@ -337,7 +337,7 @@ function cropCss() {
height:0;
overflow:hidden;
}
-
+
#modal{
z-index: 10;
position: fixed;
@@ -349,7 +349,7 @@ function cropCss() {
opacity: 0.95;
display: none;
}
-
+
#preview{
z-index: 11;
position: fixed;
@@ -362,7 +362,7 @@ function cropCss() {
font-size: 0px;
line-height: 0px;
}
-
+
#preview .buttons{
width: 36px;
position: absolute;
diff --git a/cis/private/coodle/stammdaten.php b/cis/private/coodle/stammdaten.php
index b30e5e8d6..894d87390 100755
--- a/cis/private/coodle/stammdaten.php
+++ b/cis/private/coodle/stammdaten.php
@@ -46,7 +46,7 @@ echo '
-
+
diff --git a/cis/private/info/ersthelfer.php b/cis/private/info/ersthelfer.php
index 29499bf6b..18c86293b 100644
--- a/cis/private/info/ersthelfer.php
+++ b/cis/private/info/ersthelfer.php
@@ -53,7 +53,7 @@ if(check_lektor($user))
-
+
-
+
-
+
-
+
t("telefonverzeichnis/titelTelefonverzeichnis");?>
-
+
-
-
+
+
+
';
if(isset($_GET['user']))
{
- //Terminliste von anderen Personen darf nur dann angezeigt werden, wenn
+ //Terminliste von anderen Personen darf nur dann angezeigt werden, wenn
//die entsprechende Berechtigung vorhanden ist
$rechte = new benutzerberechtigung();
if(!$rechte->getBerechtigungen($uid))
@@ -84,14 +84,14 @@ if(!$lektor->load($user))
die($p->t('global/fehlerBeimErmittelnDerUID'));
$sql_query = "
- SELECT
+ SELECT
distinct tbl_paabgabe.datum, tbl_paabgabe.fixtermin, tbl_paabgabe.kurzbz,
- person_student.vorname as stud_vorname, person_student.nachname as stud_nachname,
+ person_student.vorname as stud_vorname, person_student.nachname as stud_nachname,
person_student.titelpre as stud_titelpre, person_student.titelpost as stud_titelpost,
- tbl_lehrveranstaltung.semester, UPPER(tbl_studiengang.typ || tbl_studiengang.kurzbz) as stg,
+ tbl_lehrveranstaltung.semester, UPPER(tbl_studiengang.typ || tbl_studiengang.kurzbz) as stg,
tbl_paabgabetyp.bezeichnung as typ_bezeichnung
- FROM
- campus.tbl_paabgabe
+ FROM
+ campus.tbl_paabgabe
JOIN lehre.tbl_projektarbeit USING(projektarbeit_id)
JOIN lehre.tbl_projektbetreuer USING(projektarbeit_id)
JOIN public.tbl_benutzer bn_student ON(tbl_projektarbeit.student_uid=bn_student.uid)
@@ -102,13 +102,13 @@ $sql_query = "
JOIN campus.tbl_paabgabetyp USING(paabgabetyp_kurzbz)
WHERE
tbl_projektbetreuer.person_id='".addslashes($lektor->person_id)."' AND tbl_paabgabe.datum>=now() AND bn_student.aktiv
- ORDER BY tbl_paabgabe.datum
+ ORDER BY tbl_paabgabe.datum
";
if($result = $db->db_query($sql_query))
{
echo "".$p->t('abgabetool/terminuebersicht')." - $lektor->titelpre $lektor->vorname $lektor->nachname $lektor->titelpost
";
-
+
if($db->db_num_rows($result)>0)
{
echo '';
@@ -126,9 +126,9 @@ if($result = $db->db_query($sql_query))
';
-
+
while($row = $db->db_fetch_object($result))
- {
+ {
echo '';
echo '| '.$datum_obj->formatDatum($row->datum,'d.m.Y').' | ';
echo ''.($row->fixtermin=='t'?'Ja':'Nein').' | ';
@@ -136,10 +136,10 @@ if($result = $db->db_query($sql_query))
echo ''.$row->kurzbz.' | ';
echo ''.$row->stud_titelpre.' '.$row->stud_vorname.' '.$row->stud_nachname.' '.$row->stud_titelpre.' | ';
echo ''.$row->stg.' | ';
- echo ''.$row->semester.' | ';
+ echo ''.$row->semester.' | ';
echo "
\n";
}
-
+
echo "\n
";
}
else
@@ -147,4 +147,4 @@ if($result = $db->db_query($sql_query))
}
echo '