2011-11-28 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* operation/events/events_list.php: Fixed bad cast from alphanumeric
	to numeric in timestamp conversion.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5186 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-11-28 14:59:23 +00:00
parent 8319ad370b
commit b9628e297a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-11-28 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/events/events_list.php: Fixed bad cast from alphanumeric
to numeric in timestamp conversion.
2011-11-28 Juan Manuel Ramon <juanmanuel.ramon@artica.es> 2011-11-28 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/events/events_list.php: Removed traces. * operation/events/events_list.php: Removed traces.

View File

@ -587,7 +587,7 @@ foreach ($result as $event) {
$string .= date ($config["date_format"], $event['timestamp_rep']); $string .= date ($config["date_format"], $event['timestamp_rep']);
} }
else { else {
$string .= date ($config["date_format"], $event["timestamp"]); $string .= date ($config["date_format"], strtotime($event["timestamp"]));
} }
$string .= '</td></tr><tr class="rowOdd">'; $string .= '</td></tr><tr class="rowOdd">';
$odd = ''; $odd = '';