naked br appearing when attaching and textplain
This commit is contained in:
parent
a742199035
commit
e6330e3b96
1 changed files with 6 additions and 1 deletions
|
@ -98,7 +98,12 @@ function wall_attach_post(&$a) {
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<br /><br />[attachment]' . $r[0]['id'] . '[/attachment]' . '<br />';
|
$lf = '<br />';
|
||||||
|
|
||||||
|
if(local_user() && intval(get_pconfig(local_user(),'system','plaintext')))
|
||||||
|
$lf = "\n";
|
||||||
|
|
||||||
|
echo $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf;
|
||||||
|
|
||||||
killme();
|
killme();
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
|
|
Loading…
Reference in a new issue