aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
...
| * [ticket/9992] Add a comma to language for IP_LOGIN_LIMIT_MAX_EXPLAINNils Adermann2011-06-111-1/+1
| | | | | | | | PHPBB3-9992
| * [ticket/9992] Use sql_fetchfield for single row and single column resultNils Adermann2011-06-101-2/+1
| | | | | | | | PHPBB3-9992
| * [ticket/9992] Adding a limit on login attempts per IP.Nils Adermann2011-06-1017-16/+343
| | | | | | | | | | | | | | | | | | | | | | | | | | A new table was created to save all failed login attempts with corresponding information on username, ip and useragent. By default the limit is 50 login attempts within 6 hours per IP. The limit is relatively high to avoid big problems on sites behind a reverse proxy that don't receive the forwarded-for value as REMOTE_ADDR but see all users as coming from the same IP address. But if these users run into problems a special forwarded-for option is available to limit logins by forwarded-for value instead of ip. PHPBB3-9992
| * [ticket/9992] Make sql_create_table and sql_table_exists available in updaterNils Adermann2011-06-101-0/+254
| | | | | | | | | | | | | | These are defined the same way in db_tools. This duplicated code should be removed together with the rest of the db_tools duplication at some point. PHPBB3-9992
* | Merge remote-tracking branch 'bantu/ticket/10110' into develop-olympusIgor Wiedler2011-06-111-11/+1
|\ \ | | | | | | | | | | | | * bantu/ticket/10110: [ticket/10110] Remove multi-server syntax from Redis ACM.
| * | [ticket/10110] Remove multi-server syntax from Redis ACM.Andreas Fischer2011-06-111-11/+1
| | | | | | | | | | | | PHPBB3-10110
* | | [ticket/10075] Rename nn- to Oleg in docs/AUTHORS.Andreas Fischer2011-06-111-1/+1
| | | | | | | | | | | | PHPBB3-10075
* | | [ticket/10075] Move APTX to Former Contributors in docs/AUTHORS.Andreas Fischer2011-06-111-1/+1
|/ / | | | | | | PHPBB3-10075
* | [ticket/9908] Send 301 before stripping SID so bots do (hopefully) not revisit.Andreas Fischer2011-06-101-0/+1
| | | | | | | | PHPBB3-9908
* | Merge remote-tracking branch 'naderman/ticket/10198' into develop-olympusAndreas Fischer2011-06-101-2/+2
|\ \ | |/ |/| | | | | | | * naderman/ticket/10198: [ticket/10198] range validation for strings should limit characters not bytes [ticket/10198] validate_config_vars() improperly validates multibyte strings
| * [ticket/10198] range validation for strings should limit characters not bytesNils Adermann2011-06-101-1/+1
| | | | | | | | PHPBB3-10198
| * [ticket/10198] validate_config_vars() improperly validates multibyte stringsrxu2011-06-101-1/+1
| | | | | | | | PHPBB3-10198
* | Merge branch 'ticket/bantu/9802' into develop-olympusNils Adermann2011-06-101-18/+23
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | * ticket/bantu/9802: [ticket/9802] Remove unnecessary htmlspecialchars() call on REMOTE_ADDR. [ticket/9802] Only check for IPv4-mapped address when address is IPv6. [ticket/9802] Fix tiny logic bug in loop determining REMOTE_ADDR. [ticket/9802] Remove redundant character class definition from preg_replace. [ticket/9802] Fix redundant str_replace call. No need to replace ' ' with ' '.
| * | [ticket/9802] Remove unnecessary htmlspecialchars() call on REMOTE_ADDR.Andreas Fischer2011-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The value in $_SERVER['REMOTE_ADDR'] is either validated to be a valid IP address or is replaced by our default value. Valid IP addresses do not contain HTML special characters, thus the htmlspecialchars() call is unnecessary. PHPBB3-9802
| * | [ticket/9802] Only check for IPv4-mapped address when address is IPv6.Andreas Fischer2011-04-191-14/+19
| | | | | | | | | | | | PHPBB3-9802
| * | [ticket/9802] Fix tiny logic bug in loop determining REMOTE_ADDR.Andreas Fischer2011-04-191-2/+2
| | | | | | | | | | | | | | | | | | When $ip is empty() it was assigned to $this->ip. PHPBB3-9802
| * | [ticket/9802] Remove redundant character class definition from preg_replace.Andreas Fischer2011-04-191-2/+2
| | | | | | | | | | | | PHPBB3-9802
| * | [ticket/9802] Fix redundant str_replace call. No need to replace ' ' with ' '.Andreas Fischer2011-04-191-2/+2
| | | | | | | | | | | | PHPBB3-9802
* | | Merge branch 'ticket/rxu/6712' into develop-olympusNils Adermann2011-06-103-30/+104
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/rxu/6712: [ticket/6712] Properly explain result of setting the bump interval to 0. [ticket/6712] Add phpbb_ function name prefix, more docs, rename current_time [ticket/6712] Pass $post_data by the value instead of by the reference. [ticket/6712] Bump does not create new topic icon on index.
| * | | [ticket/6712] Properly explain result of setting the bump interval to 0.Nils Adermann2011-06-101-1/+1
| | | | | | | | | | | | | | | | PHPBB3-6712
| * | | [ticket/6712] Add phpbb_ function name prefix, more docs, rename current_timerxu2011-05-012-11/+22
| | | | | | | | | | | | | | | | PHPBB3-6712
| * | | [ticket/6712] Pass $post_data by the value instead of by the reference.rxu2011-04-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-6712
| * | | [ticket/6712] Bump does not create new topic icon on index.rxu2010-10-182-29/+92
| | | | | | | | | | | | | | | | | | | | | | | | Handle the topic bumping process more properly. PHPBB3-6712
* | | | Merge branch 'ticket/adamreyher/9878' into develop-olympusNils Adermann2011-06-095-5/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * ticket/adamreyher/9878: [ticket/9878] Remove IE7 emulation from prosilver/subSilver2
| * | | | [ticket/9878] Remove IE7 emulation from prosilver/subSilver2Adam Reyher2011-06-095-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With these changes, prosilver and subSilver2 no longer need to force IE7 emulation when browsing with IE8 due to the well-known textarea scrolling bug. PHPBB3-9878
* | | | | Merge branch 'ticket/rxu/217' into develop-olympusNils Adermann2011-06-091-2/+9
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/rxu/217: [ticket/217] Use positive assertions in tests. [ticket/217] Silence errors in tests, not code. [ticket/217] Use positive parameter statement for bbcode_init() [ticket/217] Adjust patch, add tests [ticket/217] Multiline [url] not converted
| * | | | | [ticket/217] Silence errors in tests, not code.Oleg Pudeyev2011-06-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use a mock user object for testing bbcode. PHPBB3-217
| * | | | | [ticket/217] Use positive parameter statement for bbcode_init()rxu2011-06-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-217
| * | | | | [ticket/217] Adjust patch, add testsrxu2011-06-061-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-217
| * | | | | [ticket/217] Multiline [url] not convertedrxu2011-06-061-1/+3
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | This is the second attempt parse multiline URL text, see the ticket comments. PHPBB3-217
* | | | | Merge remote-tracking branch 'nickvergessen/ticket/10068' into develop-olympusAndreas Fischer2011-06-092-6/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10068: [ticket/10068] Style links posted in posts the same way as in signatures.
| * | | | | [ticket/10068] Style links posted in posts the same way as in signatures.Joas Schilling2011-06-062-6/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Firefox4 is going to have some restrictions to :visited for security purpose (see http://hacks.mozilla.org/2010/03/privacy-related-changes-coming-to-css-vistited/ for more information) In phpBB links inside posts therefor can not be displayed with the dotted line anymore. So when we change this anyway we can just make links in signature and posts look the same. PHPBB3-10068
* | | | | | Merge remote-tracking branch 'nickvergessen/ticket/10171' into develop-olympusAndreas Fischer2011-06-091-5/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10171: [ticket/10171] Fix displaying the "PM marking colours" in Firefox4.
| * | | | | | [ticket/10171] Fix displaying the "PM marking colours" in Firefox4.Joas Schilling2011-05-051-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10171
* | | | | | | Merge remote-tracking branch 'naderman/ticket/7888' into develop-olympusAndreas Fischer2011-06-095-8/+24
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/7888: [ticket/7888] Swap in-forum/topic search to GET forms.
| * | | | | | | [ticket/7888] Swap in-forum/topic search to GET forms.Nils Adermann2011-06-095-8/+24
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow sending URLs to search results to other users. The advanced search page has always worked like this, but these special pages used to cause problems. PHPBB3-7888
* | | | | | | Merge remote-tracking branch 'naderman/ticket/7057' into develop-olympusAndreas Fischer2011-06-092-5/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/7057: [ticket/7057] Use GET for quicksearch and add session id to hidden fields [ticket/7057] Remove trailing whitespace in functions.php
| * | | | | | | [ticket/7057] Use GET for quicksearch and add session id to hidden fieldsNils Adermann2011-06-022-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without sid a GET form logs a user out if they have cookies disabled. PHPBB3-7057
| * | | | | | | [ticket/7057] Remove trailing whitespace in functions.phpNils Adermann2011-06-021-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-7057
* | | | | | | | Merge remote-tracking branch 'naderman/ticket/8138' into develop-olympusAndreas Fischer2011-06-094-8/+8
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/8138: [ticket/8138] Add autocomplete="off" to acp_board and ldap settings [ticket/8138] Add autocomplete="off" to a user and forum ACP.
| * | | | | | | | [ticket/8138] Add autocomplete="off" to acp_board and ldap settingsNils Adermann2011-06-032-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-8138
| * | | | | | | | [ticket/8138] Add autocomplete="off" to a user and forum ACP.Nils Adermann2011-06-032-6/+6
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | PHPBB3-8138
* | | | | | | | Merge remote-tracking branch 'naderman/ticket/10005' into develop-olympusAndreas Fischer2011-06-092-1/+14
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/10005: [ticket/10005] Add description to test cases [ticket/10005] Add validation of dropdown custom profile field values
| * | | | | | | [ticket/10005] Add validation of dropdown custom profile field valuesNils Adermann2011-06-022-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10005
* | | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/10203' into develop-olympusAndreas Fischer2011-06-091-2/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10203: [ticket/10203] Fix quotations and hyphen in language strings for PHPBB3-10067
| * | | | | | | | [ticket/10203] Fix quotations and hyphen in language strings for PHPBB3-10067Joas Schilling2011-06-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10203
* | | | | | | | | Merge remote-tracking branch 'naderman/ticket/10067' into develop-olympusAndreas Fischer2011-06-062-10/+11
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/10067: [ticket/10067] Add separator to h_radio to place options on individual lines
| * | | | | | | | [ticket/10067] Add separator to h_radio to place options on individual linesNils Adermann2011-06-052-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous mechanism for account activation resulted in two h_radio calls with identical id attributes for two elements. PHPBB3/10067
* | | | | | | | | Merge branch 'ticket/bantu/10042' into develop-olympusNils Adermann2011-06-052-1/+17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/bantu/10042: [ticket/10042] GD CAPTCHA: Call phpbb_mt_rand() where required. [ticket/10042] GD CAPTCHA: Round offset to the next pixel. [ticket/10042] Add mt_rand() wrapper which allows swapping $min and $max.
| * | | | | | | | | [ticket/10042] GD CAPTCHA: Call phpbb_mt_rand() where required.Andreas Fischer2011-03-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10042