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:
juanmanuelr 2011-06-08 17:25:00 +00:00
parent 5af8479b74
commit 126b0616bb
2 changed files with 13 additions and 1 deletions

View File

@ -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>
* godmode/tag/edit_tag.php: Comma characters are erased

View File

@ -611,7 +611,14 @@ foreach ($result as $event) {
} else {
$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 .= '</table>';