bei Bezeichnung - Beschränkung der Zeichen weggenommen

ort_kurzbz bei Ressource anzeigen wird jetzt berücksichtigt
This commit is contained in:
Karl Burkhart
2012-10-25 07:49:35 +00:00
parent ccf964a9c3
commit 6cd53ebb35
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ foreach($coodle->result as $c)
echo '<tr>
<td>'.$coodle->convert_html_chars($c->coodle_id).'</td>
<td>'.$coodle->convert_html_chars($c->titel).'</td>
<td>'.(substr($c->beschreibung,0,40)).'</td>
<td>'.$c->beschreibung.'</td>
<td>'.$coodle->convert_html_chars($c->coodle_status_kurzbz).'</td>
<td>'.$coodle->convert_html_chars($c->ersteller_uid).'</td>
<td>'.$coodle->convert_html_chars($datum->formatDatum($c->endedatum, 'd.m.Y')).'</td>
+4 -4
View File
@@ -39,6 +39,7 @@ $coodle = new coodle();
if(!$coodle->load($coodle_id))
die($coodle->errormsg);
// Überprüfen ob Coodle Status laufend hat
if(!$coodle->checkStatus($coodle_id))
die('Umfrage ist schon beendet oder noch nicht gestartet');
@@ -55,10 +56,6 @@ else
die('Keine Berechtigung für diese Umfrage');
}
// Überprüfen ob Coodle Status laufend hat
// checkboxen speichern
if(isset ($_POST['save']))
{
@@ -233,6 +230,9 @@ if(isset ($_POST['save']))
if($ressource->zugangscode !='' && $ressource->uid =='')
$name = $ressource->name;
if($ressource->ort_kurzbz != '')
$name = $ressource->ort_kurzbz;
// eigene Reihe farbig hervorheben
if(isset($_GET['zugangscode']) && $_GET['zugangscode'] == $ressource->zugangscode)
$class ='owner';