summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/controllers/user.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/application/controllers/user.php b/application/controllers/user.php
index 30e5b9fd7..a9e50d742 100644
--- a/application/controllers/user.php
+++ b/application/controllers/user.php
@@ -148,10 +148,14 @@ class User extends MY_Controller {
->get()->result_array();
// Convert timestamp to unix timestamp
- if (isset($query['created']))
+ foreach ($query as & $record)
{
- $query['created'] = strtotime($query['created']);
+ if ( ! empty($record['created']))
+ {
+ $record['created'] = strtotime($record['created']);
+ }
}
+ unset($record);
if (static_storage("response_type") == "json") {
return send_json_reply($query);