| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* bantu/ticket/10294:
[ticket/10294] Fix sql_affectedrows() in mssqlnative driver.
|
| |
| |
| |
| |
| |
| | |
sqlsrv_rows_affected() expects a statement resource, not a connection resource.
PHPBB3-10294
|
|\ \
| | |
| | |
| | |
| | | |
* Noxwizard/ticket/10351:
[ticket/10351] Fix Oracle's sql_column_remove()
|
| | |
| | |
| | |
| | |
| | |
| | | |
The correct syntax is DROP COLUMN.
PHPBB3-10351
|
|/ /
| |
| |
| | |
PHPBB3-10352
|
|/
|
|
| |
PHPBB3-10346
|
|\
| |
| |
| |
| |
| | |
* github-rxu/ticket/10226:
[ticket/10226] Use is_numeric() instead of preg_replace()
[ticket/10226] Allow mysqli connections via local sockets/pipes
|
| |
| |
| |
| | |
PHPBB3-10226
|
| |
| |
| |
| | |
PHPBB3-10226
|
| |
| |
| |
| | |
PHPBB3-10267
|
|\ \
| |/
|/|
| |
| |
| | |
* prep-release-3.0.9:
[ticket/9859] Changing all phpBB footers to match the new credit line
[ticket/9859] New footer copyright line with registered symbol
|
| |
| |
| |
| | |
PHPBB3-9859
|
|/
|
|
| |
PHPBB3-10227
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
PHPBB3-9892
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
PHPBB3-9685
|
|
|
|
| |
PHPBB3-10003
|
|
|
|
|
|
|
| |
Most of it was already in db_tools, these changes could have applied to
code that did not exist in db_tools at the time of the commit.
PHPBB3-10003
|
|
|
|
|
|
| |
The diff in database_update was only partially relevant.
PHPBB3-10003
|
|
|
|
|
|
|
| |
This was painful. Git wanted to patch hunks in wrong places.
Hopefully I got it right.
PHPBB3-10003
|
|
|
|
|
|
| |
This diff applied cleanly.
PHPBB3-10003
|
|
|
|
|
|
| |
This change is somewhat questionable, maybe it should be reviewed.
PHPBB3-10003
|
|
|
|
| |
PHPBB3-10003
|
|\
| |
| |
| |
| | |
* callumacrae/ticket/10112:
[ticket/10112] Replaced a couple occurrences of count() with sizeof()
|
| |
| |
| |
| |
| |
| | |
As per the coding guidlines, sizeof() should be used instead of count().
PHPBB3-10112
|
|\ \
| | |
| | |
| | |
| | | |
* ticket/jellydoughnut/9946:
[ticket/9946] Allow storage of data >4kB on Oracle again
|
| |/
| |
| |
| |
| |
| | |
This fixes the fix to PHPBB3-9132, which introduced a fatal error on Oracle.
PHPBB3-9946
|
| |
| |
| |
| |
| |
| |
| |
| | |
To have a generic solution there is now a sql_buffer_nested_transaction()
which indicates that the given SQL driver requires buffering to run a
transaction while iterating over another result set.
PHPBB3-9685
|
| |
| |
| |
| | |
PHPBB3-10057
|
| |
| |
| |
| | |
PHPBB3-10057
|
| |
| |
| |
| |
| |
| | |
This necessitates adding connect_error property to firebird.
PHPBB3-10057
|
| |
| |
| |
| | |
PHPBB3-10057
|
| |
| |
| |
| |
| |
| |
| |
| | |
pg_last_error does not work if no connection was ever established.
Therefore we must keep track of connection errors in postgres
dbal ourselves.
PHPBB3-10057
|
| |
| |
| |
| |
| |
| |
| | |
ibase_errmsg works for the most recent call. If the connection
fails, any error message is clobbered by ibase_service_attach call.
PHPBB3-10057
|
| |
| |
| |
| |
| |
| |
| |
| | |
Calling nonexistent functions with @ destroys the script with
no feedback as to the cause of the error. Check whether
interbase functions exist before calling them.
PHPBB3-10057
|
| |
| |
| |
| | |
PHPBB3-10057
|
| |
| |
| |
| |
| |
| | |
This change is in its own commit because it will be reverted for 3.1.
PHPBB3-10057
|
| |
| |
| |
| |
| |
| |
| | |
Replaced error collection functions with a class for a cleaner
implementation.
PHPBB3-10057
|
| |
| |
| |
| |
| |
| |
| | |
When pg_connect/pg_pconnect do not exist, mention that they come
with pgsql extension.
PHPBB3-10057
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Addresses two issues:
1. When pgsql extension is missing, @pg_connect would silently
abort execution. Check for pg_connect existence before calling it,
same with pg_pconnect.
2. When connection fails, the error reported by php is discarded.
User is shown the failure message without the reason for failure,
making debugging difficult. Collect the error (if any) via a
temporarily installed error handler, and display it if connection
failed.
PHPBB3-10057
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Standard HTML output now includes:
Powered by <a href="http://www.phpbb.com/">phpBB</a> © phpBB Group
Print output now includes:
Powered by phpBB © phpBB Group<br />http://www.phpbb.com/
This also fixes an inconsistency where "phpBB Group" was linked instead of
"phpBB".
PHPBB3-9859
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* task/naderman/mssql-db-tests:
[task/mssql-db-tests] Remove MS SQL helper values from SELECT LIMIT results.
[task/mssql-db-tests] Split up database tests into SELECT and write operations
[task/mssql-db-tests] PHPUnit output got stuck after unterminated ob_start.
[task/mssql-db-tests] sql_query_limit must return all results when total = 0
[task/mssql-db-tests] Add support for odbc & sqlsrv PDO test connections
[task/mssql-db-tests] Refactored getConnection into multiple smaller parts.
[task/mssql-db-tests] Allow test configuration with environment variables.
[task/mssql-db-tests] No longer display an error when skipping db tests.
[task/mssql-db-tests] Use a simple getter for test case helpers.
|
| |
| |
| |
| | |
PHPBB3-9868
|
| |
| |
| |
| | |
PHPBB3-9868
|
|/
|
|
|
|
|
|
|
| |
We require version 1.1 of the sqlsrv extension anyway so the regular
sqlsrv_num_rows can be used instead of buffering the result. The result
buffer (class result_mssqlnative) should never automatically free the
resource it receives - we consistently close resources using sql_freeresult().
PHPBB3-9686
|
|\
| |
| |
| |
| |
| | |
* ticket/evil3/8944:
[ticket/8944] Patch db_tools to support index length for MySQL4
[ticket/8944] Add index length to CREATE INDEX for MySQL4 in database_update
|
| | |
|
|/
|
|
| |
PHPBB3-9039
|