aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notice.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/notice.php')
-rw-r--r--mod/notice.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/mod/notice.php b/mod/notice.php
deleted file mode 100644
index 19cf53189..000000000
--- a/mod/notice.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
- /* identi.ca -> friendica items permanent-url compatibility */
-
- function notice_init(&$a){
- $id = $a->argv[1];
- $r = q("SELECT user.nickname FROM user LEFT JOIN item ON item.uid=user.uid WHERE item.id=%d",
- intval($id)
- );
- if (count($r)){
- $nick = $r[0]['nickname'];
- $url = $a->get_baseurl()."/display/$nick/$id";
- goaway($url);
- } else {
- $a->error = 404;
- notice( t('Item not found.') . EOL);
-
- }
- return;
-
- }