2011-03-17 03:36:59 +01:00
|
|
|
<?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 = '';
|
|
|
|
|
2012-04-04 11:02:23 +02:00
|
|
|
// if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) {
|
2012-03-15 11:47:02 +01:00
|
|
|
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
|
2012-03-07 00:28:27 +01:00
|
|
|
if($r[0]['title'])
|
|
|
|
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
|
|
|
|
$o .= $r[0]['body'] . "\n";
|
2012-04-04 11:02:23 +02:00
|
|
|
// }
|
|
|
|
// else {
|
|
|
|
// $o .= '♲ <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />';
|
|
|
|
// if($r[0]['title'])
|
|
|
|
// $o .= '<strong>' . $r[0]['title'] . '</strong><br />';
|
|
|
|
// $o .= $r[0]['body'] . "\n";
|
|
|
|
// }
|
2012-03-07 00:28:27 +01:00
|
|
|
echo $o;
|
2011-03-17 03:36:59 +01:00
|
|
|
killme();
|
2011-04-10 12:36:12 +02:00
|
|
|
}
|