diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-28 03:20:49 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-28 03:20:49 +0100 |
commit | ffe6d20dc046fdfe490ba03b93a0bac32af7c4d8 (patch) | |
tree | b204b628a205e3d94440e30f6858c948c8f702bb /include/bbcode.php | |
parent | c20c9e99b625031a7b4497f11650e0660f60d68c (diff) | |
download | volse-hubzilla-ffe6d20dc046fdfe490ba03b93a0bac32af7c4d8.tar.gz volse-hubzilla-ffe6d20dc046fdfe490ba03b93a0bac32af7c4d8.tar.bz2 volse-hubzilla-ffe6d20dc046fdfe490ba03b93a0bac32af7c4d8.zip |
BBCode - $1 wrote doesn't make sense as a spoiler. $1 spoiler does.
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index a7055fc45..0803ed365 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -610,7 +610,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { // Check for [spoiler=Author] text - $t_wrote = t('$1 wrote:'); + $t_wrote = t('$1 spoiler'); // handle nested quotes $endlessloop = 0; |