aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
...
* [ticket/10214] Correct Oracle create table query syntax in db_toolsNils Adermann2011-06-131-2/+2
| | | | | | | | Removes the semicolon at end of oracle CREATE TABLE queries and adds a semicolon to the end of a SELECT query inside of the trigger for a new table's auto increment column before the end keyword PHPBB3-10214
* [develop-olympus] Bumping version number for 3.0.9-RC1.Andreas Fischer2011-06-121-1/+1
|
* [ticket/9892] count is a keyword in firebird, so renaming this aliasNils Adermann2011-06-121-2/+2
| | | | PHPBB3-9892
* [ticket/9892] Table prefix lengths influence index lengths in db_toolsNils Adermann2011-06-121-5/+9
| | | | PHPBB3-9892
* [ticket/9892] Shorten the index names on the q&a captchaNils Adermann2011-06-121-2/+2
| | | | PHPBB3-9892
* [ticket/9892] column & index name limits, firebird auto increment in db_toolsNils Adermann2011-06-121-1/+27
| | | | | | | | | | | | | | - Column names are limited to 30 characters - Index names are limited to 31 characters. On some dbms the index name contains both table name and actual index name so the limit applies to the sum of the lenghts of table name and index name. - Auto incremented column names are limited to 26 characters to provide an additional 4 characters for sequence names The code for firebird auto increment support using generators/sequences with triggers was copied from create_schema_files.php PHPBB3-9892
* Merge remote-tracking branch 'naderman/ticket/9992' into develop-olympusAndreas Fischer2011-06-116-5/+83
|\ | | | | | | | | | | | | | | | | * naderman/ticket/9992: [ticket/9992] Clarify explanations of ip and account limits on login [ticket/9992] Add a comma to language for IP_LOGIN_LIMIT_MAX_EXPLAIN [ticket/9992] Use sql_fetchfield for single row and single column result [ticket/9992] Adding a limit on login attempts per IP. [ticket/9992] Make sql_create_table and sql_table_exists available in updater
| * [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-106-5/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | 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/10110] Remove multi-server syntax from Redis ACM.Andreas Fischer2011-06-111-11/+1
| | | | | | | | PHPBB3-10110
* | [ticket/9908] Send 301 before stripping SID so bots do (hopefully) not revisit.Andreas Fischer2011-06-101-0/+1
|/ | | | PHPBB3-9908
* 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-101-0/+102
|\ \ | | | | | | | | | | | | | | | | | | | | | * 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] Add phpbb_ function name prefix, more docs, rename current_timerxu2011-05-011-10/+21
| | | | | | | | | | | | 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-181-0/+91
| | | | | | | | | | | | | | | | | | Handle the topic bumping process more properly. PHPBB3-6712
* | | 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 'naderman/ticket/7057' into develop-olympusAndreas Fischer2011-06-091-4/+12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * 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-021-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-091-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-031-1/+1
| | |/ / / | |/| | | | | | | | | | | | | PHPBB3-8138
* | | | | Merge remote-tracking branch 'naderman/ticket/10005' into develop-olympusAndreas Fischer2011-06-091-1/+13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-021-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10005
* | | | | | Merge remote-tracking branch 'naderman/ticket/10067' into develop-olympusAndreas Fischer2011-06-061-8/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-051-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | | [ticket/10042] GD CAPTCHA: Round offset to the next pixel.Andreas Fischer2011-03-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10042
| * | | | | | | [ticket/10042] Add mt_rand() wrapper which allows swapping $min and $max.Andreas Fischer2011-03-051-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10042
* | | | | | | | Merge branch 'ticket/p/10067' into develop-olympusNils Adermann2011-06-051-2/+8
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | * ticket/p/10067: [ticket/10067] Clarify language for user activation options in ACP.
| * | | | | | | [ticket/10067] Clarify language for user activation options in ACP.Oleg Pudeyev2011-04-301-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10067
* | | | | | | | Merge branch 'ticket/nickvergessen/10158' into develop-olympusNils Adermann2011-06-052-7/+28
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/nickvergessen/10158: [ticket/10158] Remove some code duplication from generating the message. [ticket/10158] Only view "Return to" links if they are useful. [ticket/10158] Add return-link to folder, when the user replied from a folder. [ticket/10158] Add "Return to Inbox"-link to "PM send"-message.
| * | | | | | | | [ticket/10158] Remove some code duplication from generating the message.Nils Adermann2011-06-051-28/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10158
| * | | | | | | | [ticket/10158] Only view "Return to" links if they are useful.Joas Schilling2011-05-231-8/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10158
| * | | | | | | | [ticket/10158] Add return-link to folder, when the user replied from a folder.Joas Schilling2011-05-092-7/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10158
| * | | | | | | | [ticket/10158] Add "Return to Inbox"-link to "PM send"-message.Joas Schilling2011-05-051-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10158
* | | | | | | | | Merge branch 'ticket/bantu/10195' into develop-olympusNils Adermann2011-06-051-0/+6
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/bantu/10195: [ticket/10195] Return false in session::check_dnsbl() when IPv6 is passed.
| * | | | | | | | [ticket/10195] Return false in session::check_dnsbl() when IPv6 is passed.Andreas Fischer2011-05-261-0/+6
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is no support for IPv6 addresses in the blacklists we check right now. PHPBB3-10195
* | | | | | | | Merge remote-tracking branch 'naderman/ticket/9950' into develop-olympusAndreas Fischer2011-06-031-2/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * naderman/ticket/9950: [ticket/9950] Use actual language instead of user's language in overall header
| * | | | | | | | [ticket/9950] Use actual language instead of user's language in overall headerNils Adermann2011-06-021-2/+2
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9950