diff options
author | Friendika <info@friendika.com> | 2011-03-16 19:36:59 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-16 19:36:59 -0700 |
commit | 3f432a7b82480dd985dbc2a67ae23cfc1ed258c6 (patch) | |
tree | 1fc92a535b189b0283273ff97517c74e4d79b20d /mod/share.php | |
parent | e2ea341094c53e78ae7473a83d2b6c85b1cde4eb (diff) | |
download | volse-hubzilla-3f432a7b82480dd985dbc2a67ae23cfc1ed258c6.tar.gz volse-hubzilla-3f432a7b82480dd985dbc2a67ae23cfc1ed258c6.tar.bz2 volse-hubzilla-3f432a7b82480dd985dbc2a67ae23cfc1ed258c6.zip |
share,retweet,relay,forward, whatever
Diffstat (limited to 'mod/share.php')
-rw-r--r-- | mod/share.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/share.php b/mod/share.php new file mode 100644 index 000000000..8a8229e8a --- /dev/null +++ b/mod/share.php @@ -0,0 +1,23 @@ +<?php + +require_once('bbcode.php'); + +function share_init(&$a) { + + $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0); + if((! $post_id) || (! local_user())) + killme(); + + $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", + intval($post_id) + ); + if(! count($r) || $r[0]['private']) + killme(); + + $o = ''; + + $o .= '♲ <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />'; + $o .= prepare_body($r[0]); + echo $o . '<br />'; + killme(); +}
\ No newline at end of file |