From e59da00f40e33975cc8ab33fa4a9aca9262eb83e Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 26 Sep 2016 11:36:06 +0200 Subject: Remove special handling of cli clients Signed-off-by: Florian Pritz --- application/controllers/file/file_default.php | 22 +--------------------- application/controllers/user.php | 6 +----- 2 files changed, 2 insertions(+), 26 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"]; diff --git a/application/controllers/user.php b/application/controllers/user.php index a298d1076..28abf74a5 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -93,11 +93,7 @@ class User extends MY_Controller { $key = \service\user::create_apikey($userid, $comment, $access_level); - if (is_cli_client()) { - echo "$key\n"; - } else { - redirect("user/apikeys"); - } + redirect("user/apikeys"); } function delete_apikey() -- cgit v1.2.3-24-g4f1b