aboutsummaryrefslogtreecommitdiffstats
path: root/include/html2plain.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-15 16:00:07 -0700
committerfriendica <info@friendica.com>2012-04-15 16:00:07 -0700
commit93df525f5c7cf85f106d574c42b26dded1b1cf11 (patch)
tree6e5506e6805ce462e8ba05552b34e2bac63d9ab6 /include/html2plain.php
parentb5c164bf2fee381c0a48e2f1e2e19d52fe8afdf4 (diff)
parente825a73f1de308b6ae0ae3cc5549263704a14594 (diff)
downloadvolse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.tar.gz
volse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.tar.bz2
volse-hubzilla-93df525f5c7cf85f106d574c42b26dded1b1cf11.zip
Merge pull request #238 from annando/master
API: Support of the statusnet application
Diffstat (limited to 'include/html2plain.php')
-rw-r--r--include/html2plain.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/html2plain.php b/include/html2plain.php
index 7aa20500a..21261327d 100644
--- a/include/html2plain.php
+++ b/include/html2plain.php
@@ -157,7 +157,7 @@ function html2plain($html, $wraplength = 75, $compact = false)
//node2bbcode($doc, 'ol', array(), "\n[list=1]", "[/list]\n");
node2bbcode($doc, 'li', array(), "\n* ", "\n");
- node2bbcode($doc, 'hr', array(), str_repeat("-", 70), "");
+ node2bbcode($doc, 'hr', array(), "\n".str_repeat("-", 70)."\n", "");
node2bbcode($doc, 'tr', array(), "\n", "");
node2bbcode($doc, 'td', array(), "\t", "");