quotes not working on statusnet plugin posts
This commit is contained in:
parent
12fec75489
commit
44d70a238f
1 changed files with 2 additions and 0 deletions
|
@ -385,6 +385,8 @@ function statusnet_post_hook(&$a,&$b) {
|
||||||
$dent = new StatusNetOAuth($api,$ckey,$csecret,$otoken,$osecret);
|
$dent = new StatusNetOAuth($api,$ckey,$csecret,$otoken,$osecret);
|
||||||
$max_char = $dent->get_maxlength(); // max. length for a dent
|
$max_char = $dent->get_maxlength(); // max. length for a dent
|
||||||
$msg = strip_tags(bbcode($b['body']));
|
$msg = strip_tags(bbcode($b['body']));
|
||||||
|
// quotes not working - let's try this
|
||||||
|
$msg = html_entity_decode($msg);
|
||||||
if ( strlen($msg) > $max_char) {
|
if ( strlen($msg) > $max_char) {
|
||||||
$shortlink = "";
|
$shortlink = "";
|
||||||
require_once('library/slinky.php');
|
require_once('library/slinky.php');
|
||||||
|
|
Loading…
Reference in a new issue