share,retweet,relay,forward, whatever
This commit is contained in:
parent
e2ea341094
commit
3f432a7b82
17 changed files with 80 additions and 3 deletions
23
mod/share.php
Normal file
23
mod/share.php
Normal file
|
|
@ -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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue