mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
timezone box + shortening pm options variable as well as max login attempts fix.
git-svn-id: file:///svn/phpbb/trunk@7419 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
7c01f242b3
commit
2c7ef5f5c0
5 changed files with 7 additions and 7 deletions
|
@ -38,7 +38,7 @@ function login_db(&$username, &$password)
|
|||
|
||||
// If there are too much login attempts, we need to check for an confirm image
|
||||
// Every auth module is able to define what to do by itself...
|
||||
if ($config['max_login_attempts'] && $row['user_login_attempts'] > $config['max_login_attempts'])
|
||||
if ($config['max_login_attempts'] && $row['user_login_attempts'] >= $config['max_login_attempts'])
|
||||
{
|
||||
$confirm_id = request_var('confirm_id', '');
|
||||
$confirm_code = request_var('confirm_code', '');
|
||||
|
|
|
@ -404,7 +404,7 @@ $lang = array_merge($lang, array(
|
|||
'NO_ERRORS' => 'No errors',
|
||||
'NO_UPDATE_FILES' => 'Not updating the following files',
|
||||
'NO_UPDATE_FILES_EXPLAIN' => 'The following files are new or modified but the directory they normally reside in could not be found on your installation. If this list contains files to other directories than language/ or styles/ than you may have modified your directory structure and the update may be incomplete.',
|
||||
'NO_UPDATE_FILES_OUTDATED' => 'No valid update directory was found, please make sure you uploaded the relevant files.<br /><br />Your installation does <strong>not</strong> seem to be up to date. Updates are available for your version of phpBB %1$s, please visit <a href="http://www.phpbb.com/downloads.php" rel="external">http://www.phpbb.com/downloads.php</a> to obtain the correct package to update from Version %2$s to Version %3$s.',
|
||||
'NO_UPDATE_FILES_OUTDATED' => 'No valid update directory was found, please make sure you uploaded the relevant files.<br /><br />Your installation does <strong>not</strong> seem to be up to date. Updates are available for your version of phpBB %1$s, please visit <a href="http://www.phpbb.com/downloads/" rel="external">http://www.phpbb.com/downloads/</a> to obtain the correct package to update from Version %2$s to Version %3$s.',
|
||||
'NO_UPDATE_FILES_UP_TO_DATE' => 'Your version is up to date. There is no need to run the update tool. If you want to make an integrity check on your files make sure you uploaded the correct update files.',
|
||||
'NO_UPDATE_INFO' => 'Update file information could not be found.',
|
||||
'NO_UPDATES_REQUIRED' => 'No updates required',
|
||||
|
@ -415,7 +415,7 @@ $lang = array_merge($lang, array(
|
|||
'OLD_UPDATE_FILES' => 'Update files are out of date. The update files found are for updating from phpBB %1$s to phpBB %2$s but the latest version of phpBB is %3$s.',
|
||||
|
||||
'PERFORM_DATABASE_UPDATE' => 'Perform database update',
|
||||
'PERFORM_DATABASE_UPDATE_EXPLAIN' => 'Below you will find a link to the database update script. This script needs to be run separately because updating the database might result in unexpected behaviour if you are logged in. The database update can take a while, so please do not stop the execution if it seems to hang. After you performed the database update, close the database update window and continue the update process.',
|
||||
'PERFORM_DATABASE_UPDATE_EXPLAIN' => 'Below you will find a link to the database update script. This script needs to be run separately because updating the database might result in unexpected behaviour if you are logged in. The database update can take a while, so please do not stop the execution if it seems to hang. After you performed the database update just follow the link presented to continue the update process.',
|
||||
'PREVIOUS_VERSION' => 'Previous version',
|
||||
'PROGRESS' => 'Progress',
|
||||
|
||||
|
@ -466,7 +466,7 @@ $lang = array_merge($lang, array(
|
|||
<p>The recommended way of updating your installation only takes the following steps:</p>
|
||||
|
||||
<ul style="margin-left: 20px; font-size: 1.1em;">
|
||||
<li>Go to the <a href="http://www.phpbb.com/downloads.php" title="http://www.phpbb.com/downloads.php">phpBB.com downloads page</a> and download the correct "phpBB Update Package" archive.<br /><br /></li>
|
||||
<li>Go to the <a href="http://www.phpbb.com/downloads/" title="http://www.phpbb.com/downloads/">phpBB.com downloads page</a> and download the correct "phpBB Update Package" archive.<br /><br /></li>
|
||||
<li>Unpack the archive.<br /><br /></li>
|
||||
<li>Upload the complete uncompressed install folder to your phpBB root directory (where your config.php file is).<br /><br /></li>
|
||||
</ul>
|
||||
|
|
|
@ -411,7 +411,7 @@ $lang = array_merge($lang, array(
|
|||
'UCP_PM' => 'Private messages',
|
||||
'UCP_PM_COMPOSE' => 'Compose message',
|
||||
'UCP_PM_DRAFTS' => 'Manage PM drafts',
|
||||
'UCP_PM_OPTIONS' => 'Filtering, categorisation & delivery options',
|
||||
'UCP_PM_OPTIONS' => 'Rules, folder & settings',
|
||||
'UCP_PM_POPUP' => 'Private messages',
|
||||
'UCP_PM_POPUP_TITLE' => 'Private message popup',
|
||||
'UCP_PM_UNREAD' => 'Unread messages',
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
<!-- ENDIF -->
|
||||
<dl>
|
||||
<dt><label for="timezone">{L_BOARD_TIMEZONE}:</label></dt>
|
||||
<dd><select name="tz" id="timezone">{S_TZ_OPTIONS}</select></dd>
|
||||
<dd><select name="tz" id="timezone" class="autowidth">{S_TZ_OPTIONS}</select></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="dst1">{L_BOARD_DST}:</label></dt>
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
</dl>
|
||||
<dl>
|
||||
<dt><label for="tz">{L_TIMEZONE}:</label></dt>
|
||||
<dd><select name="tz" id="tz" title="{L_TIMEZONE}" style="width: 90%;">{S_TZ_OPTIONS}</select></dd>
|
||||
<dd><select name="tz" id="tz" class="autowidth">{S_TZ_OPTIONS}</select></dd>
|
||||
</dl>
|
||||
|
||||
<!-- BEGIN profile_fields -->
|
||||
|
|
Loading…
Add table
Reference in a new issue