summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-09-19 20:59:28 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-09-19 21:41:31 +0200
commit15bf275ec299719b8b34055b0b13b06ae0176dba (patch)
tree1e6c652f9311a88b530d960e5ff8a0517cd73781
parent8ef115e8c38f0cef52a72749a918ebb4def389d0 (diff)
Improve plaintext API deprecation warning
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--application/controllers/file/file_default.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/application/controllers/file/file_default.php b/application/controllers/file/file_default.php
index 2a16521a1..f8beb90b8 100644
--- a/application/controllers/file/file_default.php
+++ b/application/controllers/file/file_default.php
@@ -88,7 +88,9 @@ class File_default extends MY_Controller {
if (isset($_GET["cli_deprecated"])) {
$this->data['alerts'][] = [
"type" => "warning",
- "message" => "<b>WARNING:</b> This file has been uploaded with a client that uses an old and deprecated API.<br> This API will be removed in the near future. Please update your client to one that uses a more recent API."
+ "message" => "<b>WARNING:</b> This file has been uploaded with a client that uses an old and deprecated API.<br>
+ This API will be removed in the near future. Please update your client to one that uses a more recent API.<br>
+ If you are using fb-client, please upgrade to version 2.0 or newer. For other clients, please check with your client's developer."
];
}