diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-09-26 11:36:06 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-11-01 17:29:04 +0100 |
commit | e59da00f40e33975cc8ab33fa4a9aca9262eb83e (patch) | |
tree | 562a7cfe9bc961477fdf2fd09b6270875fa30925 /application/controllers/file | |
parent | e9b1fc5637b8412038a9c400c983c526829b6664 (diff) |
Remove special handling of cli clients
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/file')
-rw-r--r-- | application/controllers/file/file_default.php | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/application/controllers/file/file_default.php b/application/controllers/file/file_default.php index 82e933021..563102026 100644 --- a/application/controllers/file/file_default.php +++ b/application/controllers/file/file_default.php @@ -553,10 +553,6 @@ class File_default extends MY_Controller { } } - if (is_cli_client()) { - $redirect = false; - } - if ($redirect && count($ids) == 1) { redirect($this->data['urls'][0], "location", 303); } else { @@ -770,14 +766,8 @@ class File_default extends MY_Controller { ); } - $order = is_cli_client() ? "ASC" : "DESC"; - - uasort($history["items"], function($a, $b) use ($order) { - if ($order == "ASC") { - return $a["date"] - $b["date"]; - } else { + uasort($history["items"], function($a, $b) { return $b["date"] - $a["date"]; - } }); foreach($history["items"] as $key => $item) { @@ -786,16 +776,6 @@ class File_default extends MY_Controller { if (isset($item['preview_text'])) { $history["items"][$key]["preview_text"] = htmlentities($item['preview_text']); } - - if (is_cli_client()) { - // Keep track of longest string to pad plaintext output correctly - foreach($fields as $length_key => $value) { - $len = mb_strlen($history["items"][$key][$length_key]); - if ($len > $lengths[$length_key]) { - $lengths[$length_key] = $len; - } - } - } } $this->data["items"] = $history["items"]; |