aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notice.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-21 22:11:02 -0700
committerfriendica <info@friendica.com>2012-10-21 22:11:02 -0700
commit8f9ddcb536ae46f1c6b3d3c19db1598dc4a51616 (patch)
tree1941b7e5879c9d1e54cc45529f92e9b0a8a7a0c3 /mod/notice.php
parent87c171030c8de2e36f284fa6b58f11a5535a9a29 (diff)
downloadvolse-hubzilla-8f9ddcb536ae46f1c6b3d3c19db1598dc4a51616.tar.gz
volse-hubzilla-8f9ddcb536ae46f1c6b3d3c19db1598dc4a51616.tar.bz2
volse-hubzilla-8f9ddcb536ae46f1c6b3d3c19db1598dc4a51616.zip
lotsa little fixes
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;
-
- }