From: friendica Date: Wed, 29 Feb 2012 06:41:01 +0000 (-0800) Subject: seems the subject isn't really required, contrary to the docs. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e964ed80087532a507772d6081c630c70bfe51fa;p=friendica-addons.git seems the subject isn't really required, contrary to the docs. --- diff --git a/ljpost/ljpost.php b/ljpost/ljpost.php index 1ea8dfe5..6a85d8f2 100755 --- a/ljpost/ljpost.php +++ b/ljpost/ljpost.php @@ -170,7 +170,7 @@ function ljpost_send(&$a,&$b) { require_once('include/bbcode.php'); require_once('include/datetime.php'); - $title = (($b['title']) ? $b['title'] : t('[no subject]')); + $title = $b['title']; $post = bbcode($b['body']); $post = xmlify($post);