mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- forum administration (now working and modified for easier handling the different forum types [UI])
- Changed += for arrays into array_merge. We do not want to append, we want to merge. ;) git-svn-id: file:///svn/phpbb/trunk@5330 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -29,7 +29,7 @@ if (empty($lang) || !is_array($lang))
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Bot settings
|
||||
$lang += array(
|
||||
$lang = array_merge($lang, array(
|
||||
'BOTS' => 'Manage Bots',
|
||||
'BOTS_EXPLAIN' => 'Bots or crawlers are automated agents most commonly used by search engines to update their databases. Since they rarely make proper use of sessions they can distort visitor counts, increase load and sometimes fail to index sites correctly. Here you can define a special type of user to overcome these problems.',
|
||||
'BOT_ACTIVATE' => 'Activate',
|
||||
@@ -60,6 +60,6 @@ $lang += array(
|
||||
'ERR_BOT_NO_MATCHES' => 'You must supply at least one of an agent or IP for this bot match.',
|
||||
|
||||
'NO_BOT' => 'Found no bot with the specified ID',
|
||||
);
|
||||
));
|
||||
|
||||
?>
|
Reference in New Issue
Block a user