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:
parent
8319ad370b
commit
b9628e297a
|
@ -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.
|
||||||
|
|
|
@ -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 = '';
|
||||||
|
|
Loading…
Reference in New Issue