2011-06-08 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/events/events_list.php: Added tag information in this view. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4423 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
96f97ebd8b
commit
aae3cc2bc1
|
@ -1,3 +1,8 @@
|
||||||
|
2011-06-08 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* operation/events/events_list.php: Added tag information in this
|
||||||
|
view.
|
||||||
|
|
||||||
2011-06-08 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2011-06-08 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* godmode/tag/edit_tag.php: Comma characters are erased
|
* godmode/tag/edit_tag.php: Comma characters are erased
|
||||||
|
|
|
@ -611,7 +611,14 @@ foreach ($result as $event) {
|
||||||
} else {
|
} else {
|
||||||
$string .= '<i>- ' . __('Empty') . ' -</i>';
|
$string .= '<i>- ' . __('Empty') . ' -</i>';
|
||||||
}
|
}
|
||||||
|
$string .= '</td></tr>';
|
||||||
|
$string .= '<tr><td align="left" valign="top">' . '<b>' . __('Tags') . ':</td><td align="left">';
|
||||||
|
if ($event["tags"] != '') {
|
||||||
|
$string .= $event["tags"];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$string .= '<i>- ' . __('Empty') . ' -</i>';
|
||||||
|
}
|
||||||
$string .= '</td></tr>';
|
$string .= '</td></tr>';
|
||||||
$string .= '</table>';
|
$string .= '</table>';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue