aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/acp/attachments.php11
-rw-r--r--phpBB/language/en/acp/ban.php11
-rw-r--r--phpBB/language/en/acp/board.php5
-rw-r--r--phpBB/language/en/acp/bots.php11
-rw-r--r--phpBB/language/en/acp/common.php5
-rw-r--r--phpBB/language/en/acp/database.php5
-rw-r--r--phpBB/language/en/acp/email.php11
-rw-r--r--phpBB/language/en/acp/forums.php11
-rw-r--r--phpBB/language/en/acp/groups.php5
-rw-r--r--phpBB/language/en/acp/language.php11
-rw-r--r--phpBB/language/en/acp/modules.php11
-rw-r--r--phpBB/language/en/acp/permissions.php11
-rw-r--r--phpBB/language/en/acp/permissions_phpbb.php5
-rw-r--r--phpBB/language/en/acp/posting.php5
-rw-r--r--phpBB/language/en/acp/profile.php5
-rw-r--r--phpBB/language/en/acp/prune.php11
-rw-r--r--phpBB/language/en/acp/search.php11
-rw-r--r--phpBB/language/en/acp/styles.php5
-rw-r--r--phpBB/language/en/acp/users.php5
-rw-r--r--phpBB/language/en/common.php5
-rw-r--r--phpBB/language/en/groups.php21
-rw-r--r--phpBB/language/en/help_bbcode.php10
-rw-r--r--phpBB/language/en/help_faq.php4
-rwxr-xr-xphpBB/language/en/install.php5
-rw-r--r--phpBB/language/en/mcp.php5
-rw-r--r--phpBB/language/en/memberlist.php11
-rw-r--r--phpBB/language/en/posting.php5
-rw-r--r--phpBB/language/en/search.php11
-rw-r--r--phpBB/language/en/search_ignore_words.php11
-rw-r--r--phpBB/language/en/search_synonyms.php11
-rw-r--r--phpBB/language/en/ucp.php5
-rw-r--r--phpBB/language/en/viewforum.php11
-rw-r--r--phpBB/language/en/viewtopic.php11
33 files changed, 222 insertions, 59 deletions
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php
index b9a352960a..6edae1a4cc 100644
--- a/phpBB/language/en/acp/attachments.php
+++ b/phpBB/language/en/acp/attachments.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_attachments [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/ban.php b/phpBB/language/en/acp/ban.php
index 7e48c19b65..5fcbb1fa69 100644
--- a/phpBB/language/en/acp/ban.php
+++ b/phpBB/language/en/acp/ban.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_ban [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php
index f52d53f58f..5dfd60108a 100644
--- a/phpBB/language/en/acp/board.php
+++ b/phpBB/language/en/acp/board.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/bots.php b/phpBB/language/en/acp/bots.php
index ffc5442482..3b63f2ea2e 100644
--- a/phpBB/language/en/acp/bots.php
+++ b/phpBB/language/en/acp/bots.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_bots [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index fbc82d4c5b..98db554843 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/database.php b/phpBB/language/en/acp/database.php
index 700aa321cc..7100fcb1e3 100644
--- a/phpBB/language/en/acp/database.php
+++ b/phpBB/language/en/acp/database.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/email.php b/phpBB/language/en/acp/email.php
index 84b2b3db31..4427bfff01 100644
--- a/phpBB/language/en/acp/email.php
+++ b/phpBB/language/en/acp/email.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_email [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/forums.php b/phpBB/language/en/acp/forums.php
index 434f6c2996..3948599659 100644
--- a/phpBB/language/en/acp/forums.php
+++ b/phpBB/language/en/acp/forums.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_forums [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/groups.php b/phpBB/language/en/acp/groups.php
index 562e3a89cc..f73bf063a6 100644
--- a/phpBB/language/en/acp/groups.php
+++ b/phpBB/language/en/acp/groups.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/language.php b/phpBB/language/en/acp/language.php
index 083ba2bce1..a10148942b 100644
--- a/phpBB/language/en/acp/language.php
+++ b/phpBB/language/en/acp/language.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_language [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/modules.php b/phpBB/language/en/acp/modules.php
index 535868da1f..875b24a94b 100644
--- a/phpBB/language/en/acp/modules.php
+++ b/phpBB/language/en/acp/modules.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_modules [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/permissions.php b/phpBB/language/en/acp/permissions.php
index 0b50c8a7c2..8ca4d1cec5 100644
--- a/phpBB/language/en/acp/permissions.php
+++ b/phpBB/language/en/acp/permissions.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_permissions [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/permissions_phpbb.php b/phpBB/language/en/acp/permissions_phpbb.php
index 6579f23018..d5b4f0015d 100644
--- a/phpBB/language/en/acp/permissions_phpbb.php
+++ b/phpBB/language/en/acp/permissions_phpbb.php
@@ -11,6 +11,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/posting.php b/phpBB/language/en/acp/posting.php
index b52946e135..35a3d1b2b6 100644
--- a/phpBB/language/en/acp/posting.php
+++ b/phpBB/language/en/acp/posting.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/profile.php b/phpBB/language/en/acp/profile.php
index 15fe8391cd..ca63c9c639 100644
--- a/phpBB/language/en/acp/profile.php
+++ b/phpBB/language/en/acp/profile.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/prune.php b/phpBB/language/en/acp/prune.php
index 6172602f9f..31e14d62a1 100644
--- a/phpBB/language/en/acp/prune.php
+++ b/phpBB/language/en/acp/prune.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_prune [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php
index 2d6019c3d4..33aeccbc22 100644
--- a/phpBB/language/en/acp/search.php
+++ b/phpBB/language/en/acp/search.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* acp_search [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/styles.php b/phpBB/language/en/acp/styles.php
index 4be2e79982..a6333fcba0 100644
--- a/phpBB/language/en/acp/styles.php
+++ b/phpBB/language/en/acp/styles.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/acp/users.php b/phpBB/language/en/acp/users.php
index 48f3b29334..01e773d87d 100644
--- a/phpBB/language/en/acp/users.php
+++ b/phpBB/language/en/acp/users.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php
index 33ffab19cb..f6ab75fc5b 100644
--- a/phpBB/language/en/common.php
+++ b/phpBB/language/en/common.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/groups.php b/phpBB/language/en/groups.php
index 9141cc4892..7cee799535 100644
--- a/phpBB/language/en/groups.php
+++ b/phpBB/language/en/groups.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* groups [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
@@ -37,17 +42,17 @@ $lang = array_merge($lang, array(
'CHANGED_DEFAULT_GROUP' => 'Successfully changed default group.',
- 'GROUP_AVATAR' => 'Group avatar',
+ 'GROUP_AVATAR' => 'Group avatar',
'GROUP_CHANGE_DEFAULT' => 'Are you sure you want to change your default membership to the group ā€œ%sā€?',
'GROUP_CLOSED' => 'Closed',
'GROUP_DESC' => 'Group description',
'GROUP_HIDDEN' => 'Hidden',
- 'GROUP_INFORMATION' => 'Usergroup information',
+ 'GROUP_INFORMATION' => 'Usergroup information',
'GROUP_IS_CLOSED' => 'This is a closed group, new members can only join upon invitation of a group leader.',
- 'GROUP_IS_FREE' => 'This is a freely open group, all new members are welcome.',
+ 'GROUP_IS_FREE' => 'This is a freely open group, all new members are welcome.',
'GROUP_IS_HIDDEN' => 'This is a hidden group, only members of this group can view its membership.',
'GROUP_IS_OPEN' => 'This is an open group, members can apply to join.',
- 'GROUP_IS_SPECIAL' => 'This is a special group, special groups are managed by the board administrators.',
+ 'GROUP_IS_SPECIAL' => 'This is a special group, special groups are managed by the board administrators.',
'GROUP_JOIN' => 'Join group',
'GROUP_JOIN_CONFIRM' => 'Are you sure you want to join the selected group?',
'GROUP_JOIN_PENDING' => 'Request to join group',
@@ -58,7 +63,7 @@ $lang = array_merge($lang, array(
'GROUP_MEMBERS' => 'Group members',
'GROUP_NAME' => 'Group name',
'GROUP_OPEN' => 'Open',
- 'GROUP_RANK' => 'Group rank',
+ 'GROUP_RANK' => 'Group rank',
'GROUP_RESIGN_MEMBERSHIP' => 'Resign group membership',
'GROUP_RESIGN_MEMBERSHIP_CONFIRM' => 'Are you sure you want to resign your membership from the selected group?',
'GROUP_RESIGN_PENDING' => 'Resign a pending group membership',
diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php
index 5ffe3ac742..00b00c9e19 100644
--- a/phpBB/language/en/help_bbcode.php
+++ b/phpBB/language/en/help_bbcode.php
@@ -1,17 +1,21 @@
<?php
-/**
+/**
*
* help_bbcode [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
// DEVELOPERS PLEASE NOTE
//
diff --git a/phpBB/language/en/help_faq.php b/phpBB/language/en/help_faq.php
index 60d652e1ce..808f6fdc10 100644
--- a/phpBB/language/en/help_faq.php
+++ b/phpBB/language/en/help_faq.php
@@ -12,6 +12,10 @@
/**
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
// DEVELOPERS PLEASE NOTE
//
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php
index 69064608b3..34a8f2140a 100755
--- a/phpBB/language/en/install.php
+++ b/phpBB/language/en/install.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/mcp.php b/phpBB/language/en/mcp.php
index 000c32cbae..2f238ffa37 100644
--- a/phpBB/language/en/mcp.php
+++ b/phpBB/language/en/mcp.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/memberlist.php b/phpBB/language/en/memberlist.php
index c4a392c81d..a278eb1306 100644
--- a/phpBB/language/en/memberlist.php
+++ b/phpBB/language/en/memberlist.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* memberlist [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php
index e896d72e37..c24a2a173e 100644
--- a/phpBB/language/en/posting.php
+++ b/phpBB/language/en/posting.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/search.php b/phpBB/language/en/search.php
index 616d1752c5..8e376b2602 100644
--- a/phpBB/language/en/search.php
+++ b/phpBB/language/en/search.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* search [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/search_ignore_words.php b/phpBB/language/en/search_ignore_words.php
index 63dfca8354..2dfdc0df13 100644
--- a/phpBB/language/en/search_ignore_words.php
+++ b/phpBB/language/en/search_ignore_words.php
@@ -1,15 +1,20 @@
<?php
-/**
+/**
*
* search_ignore_words [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
$words = array(
'a',
'about',
diff --git a/phpBB/language/en/search_synonyms.php b/phpBB/language/en/search_synonyms.php
index 886e1f1289..b85c39e5d5 100644
--- a/phpBB/language/en/search_synonyms.php
+++ b/phpBB/language/en/search_synonyms.php
@@ -1,15 +1,20 @@
<?php
-/**
+/**
*
* search_synonyms [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
$synonyms = array(
'abcense' => 'absence',
'abridgement' => 'abridgment',
diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php
index 7c397535ca..c573480863 100644
--- a/phpBB/language/en/ucp.php
+++ b/phpBB/language/en/ucp.php
@@ -13,6 +13,11 @@
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/viewforum.php b/phpBB/language/en/viewforum.php
index c981c24eb1..546f91587d 100644
--- a/phpBB/language/en/viewforum.php
+++ b/phpBB/language/en/viewforum.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* viewforum [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();
diff --git a/phpBB/language/en/viewtopic.php b/phpBB/language/en/viewtopic.php
index 59d3371f45..27989f3c60 100644
--- a/phpBB/language/en/viewtopic.php
+++ b/phpBB/language/en/viewtopic.php
@@ -1,18 +1,23 @@
<?php
-/**
+/**
*
* viewtopic [English]
*
* @package language
* @version $Id$
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
if (empty($lang) || !is_array($lang))
{
$lang = array();