diff options
Diffstat (limited to 'phpBB/language/en/viewtopic.php')
-rw-r--r-- | phpBB/language/en/viewtopic.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/language/en/viewtopic.php b/phpBB/language/en/viewtopic.php index 3a5a21dd83..b211fc82bf 100644 --- a/phpBB/language/en/viewtopic.php +++ b/phpBB/language/en/viewtopic.php @@ -3,7 +3,7 @@ * * viewtopic [English] * -* @package phpBB3 +* @package language * @version $Id$ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License @@ -28,7 +28,7 @@ if (empty($lang) || !is_array($lang)) // equally where a string contains only two placeholders which are used to wrap text // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine -$lang += array( +$lang = array_merge($lang, array( 'ATTACHMENT' => 'Attachment', 'BOOKMARK_ADDED' => 'Bookmarked Topic successfully.', @@ -104,6 +104,6 @@ $lang += array( 'VOTE_SUBMITTED' => 'Your vote has been cast', 'WROTE' => 'wrote', -); +)); ?>
\ No newline at end of file |