diff options
author | friendica <info@friendica.com> | 2012-03-28 15:08:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-28 15:08:15 -0700 |
commit | 75f3d41da2d85cb61ac627807011c312b96e3bb1 (patch) | |
tree | 2bee850bc2c4c8fcc3e5e53fd941dc77ecbf8d6d /include/quoteconvert.php | |
parent | a2b1aca27c936991d02ab10d97f1f7980500c460 (diff) | |
parent | bdd275474044152a5d9a33ea6b8a8071b931d27e (diff) | |
download | volse-hubzilla-75f3d41da2d85cb61ac627807011c312b96e3bb1.tar.gz volse-hubzilla-75f3d41da2d85cb61ac627807011c312b96e3bb1.tar.bz2 volse-hubzilla-75f3d41da2d85cb61ac627807011c312b96e3bb1.zip |
Merge pull request #184 from annando/master
Enhancing the API - Preparations for a better facebook export
Diffstat (limited to 'include/quoteconvert.php')
-rw-r--r-- | include/quoteconvert.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/quoteconvert.php b/include/quoteconvert.php index 3aee93234..2a6d28370 100644 --- a/include/quoteconvert.php +++ b/include/quoteconvert.php @@ -124,7 +124,7 @@ function removetofu($message) } if ($quotestart != 0) { - $message = trim(substr($message, 0, $quotestart))."\n[collapsed]\n".substr($message, $quotestart+7, -8).'[/collapsed]'; + $message = trim(substr($message, 0, $quotestart))."\n[spoiler]".substr($message, $quotestart+7, -8).'[/spoiler]'; } return($message); |