summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/controllers/file.php7
-rw-r--r--application/views/file_plaintext/show_url.php1
2 files changed, 8 insertions, 0 deletions
diff --git a/application/controllers/file.php b/application/controllers/file.php
index d432386ab..77e7c0413 100644
--- a/application/controllers/file.php
+++ b/application/controllers/file.php
@@ -85,6 +85,13 @@ class File extends MY_Controller {
$id = $this->uri->segment(1);
$lexer = urldecode($this->uri->segment(2));
+ 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."
+ ];
+ }
+
$is_multipaste = false;
if ($this->mmultipaste->id_exists($id)) {
$is_multipaste = true;
diff --git a/application/views/file_plaintext/show_url.php b/application/views/file_plaintext/show_url.php
index 64050ddcd..3288ba08e 100644
--- a/application/views/file_plaintext/show_url.php
+++ b/application/views/file_plaintext/show_url.php
@@ -1,3 +1,4 @@
<?php
+$urls = array_map(function($a) {return $a."?cli_deprecated";}, $urls);
echo implode(" ", $urls)."\n";