diff options
author | Friendika <info@friendika.com> | 2011-08-04 19:19:51 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-04 19:19:51 -0700 |
commit | f0af4de4a795ed3914f0e8e8ae3417a315d3dcd3 (patch) | |
tree | 6d4a91eefea69caa9194f8de603cdefa47955d1e /mod/parse_url.php | |
parent | 639204c2ec29ccd74fbc2cb1eb597cca86e84f27 (diff) | |
download | volse-hubzilla-f0af4de4a795ed3914f0e8e8ae3417a315d3dcd3.tar.gz volse-hubzilla-f0af4de4a795ed3914f0e8e8ae3417a315d3dcd3.tar.bz2 volse-hubzilla-f0af4de4a795ed3914f0e8e8ae3417a315d3dcd3.zip |
wrap text from imported link in [quote]
Diffstat (limited to 'mod/parse_url.php')
-rw-r--r-- | mod/parse_url.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/parse_url.php b/mod/parse_url.php index 46c6b46e9..9bb0bc464 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -116,7 +116,7 @@ function parse_url_content(&$a) { } if(strlen($text)) { - $text = '<br /><br />' . $text; + $text = '<br /><br /><blockquote>' . $text . '</blockquote><br />'; } echo sprintf($template,$url,($title) ? $title : $url,$text); |