| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
PHPBB3-16051
|
|
|
|
| |
PHPBB3-16084
|
|
|
|
| |
PHPBB3-16048
|
|
|
|
| |
PHPBB3-15928
|
|
|
|
| |
PHPBB3-15860
|
|
|
|
| |
PHPBB3-15860
|
|
|
|
| |
PHPBB3-15860
|
|
|
|
| |
PHPBB3-14972
|
|
|
|
| |
PHPBB3-14739
|
|\
| |
| |
| |
| |
| | |
* 3.1.x:
[ticket/14789] Remove obsolete check_form_key() and add missing hashes
[ticket/14789] Move form key checks to where they actually do something
|
| |
| |
| |
| | |
PHPBB3-14789
|
| |
| |
| |
| | |
PHPBB3-14789
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
[ticket/10809] Remove MSSQL support
* Senky/ticket/10809:
[ticket/10809] Reflect MSSQL removal in docs files
[ticket/10809] Remove MSSQL support
|
| | |
| | |
| | |
| | | |
PHPBB3-10809
|
|\ \ \
| |/ /
|/| /
| |/
| |
| | |
* 3.1.x:
[ticket/14789] Add form tokens to tests and uncomment add_form_key
[ticket/14789] Add link hashes and form tokens to all acp links/buttons
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This will further harden the ACP security by adding link hashes to links and
form tokens to forms that did not have these yet and result in modified
settings or write action on the filesystem or database. These few links and
forms were still relying on the global ACP protection, mainly due to them
not posing further risks of compromising data. After this change these will
now also be properly protected against tampering.
PHPBB3-14789
|
| |
| |
| |
| | |
PHPBB3-13930
|
| |
| |
| |
| | |
PHPBB3-13819
|
| |
| |
| |
| |
| |
| | |
This is the first part of the changes. More to come.
PHPBB3-13454
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Moving classes from acp_database.php to phpbb/db/extractor namespace,
also into separate files
* Adding DocBlocks and property visibility to classes
* Removing globals from code
* Passing former globals to base_extractor's constructor
* Adding DB extractor as a service, also implementing the extractor interface
as well as the extractor factory.
PHPBB3-12466
|
| |
| |
| |
| | |
PHPBB3-10748
|
| |
| |
| |
| | |
PHPBB3-13455
|
| |
| |
| |
| | |
PHPBB3-13468
|
|/
|
|
| |
PHPBB3-13421
|
|
|
|
| |
PHPBB3-13045
|
|
|
|
| |
PHPBB3-12446
|
|
|
|
| |
PHPBB3-12747
|
|
|
|
| |
PHPBB3-12594
|
|
|
|
| |
PHPBB3-9728
|
|
|
|
|
|
|
| |
Minimum version requirement is 3.6.15 as that's what ships with PHP 5.3.0
when support for SQLite 3 was added.
PHPBB3-9728
|
|
|
|
|
|
|
|
|
| |
* There MUST NOT be trailing whitespace at the end of lines.
* There MUST NOT be whitespace before the first content of a file.
* There MUST NOT be whitespace after the last content of a file.
* Functions MUST NOT contain multiple empty lines in a row.
PHPBB3-12458
|
|
|
|
|
|
|
|
|
|
|
| |
The class result_mssqlnative was removed in ticket 11980. This removes
the dependency on that class from the database backup utility. It is
possible to use the sqlsrv functions to retrieve the field information,
but they must be then mapped back to type names. That mapping was removed
in 11980 and it is easier to just look it up in the information schema
table.
PHPBB3-11990
|
|
|
|
| |
PHPBB3-11981
|
|
|
|
| |
PHPBB3-11700
|
|
|
|
| |
PHPBB3-11696
|
|\
| |
| |
| |
| |
| |
| |
| |
| | |
By Andreas Fischer
via Andreas Fischer (1) and Nils Adermann (1)
* develop-olympus:
[ticket/10611] Filter out not existing database tables when making a backup.
[ticket/10611] Use phpbb_db_tools::sql_list_tables() instead of get_tables().
[ticket/10611] Generate db_tools instance in acp_database module.
|
| |
| |
| |
| |
| |
| |
| | |
Using $this->db_tools->sql_list_tables() as the first argument gives us table
names as array keys as a by-product which might be useful at some point.
PHPBB3-10611
|
| |
| |
| |
| |
| |
| |
| |
| | |
get_tables() was deprecated by phpbb_db_tools::sql_list_tables()
This prevents unnecessarily loading functions_install.php
PHPBB3-10611
|
| |
| |
| |
| | |
PHPBB3-10611
|
| |
| |
| |
| | |
PHPBB3-9916
|
|\ \
| |/
| |
| |
| |
| | |
* develop-olympus:
[ticket/10239] Correct undefined variable error.
[ticket/10239] Add confirm box to backup restore.
|
| |
| |
| |
| | |
PHPBB3-10239
|
| |
| |
| |
| | |
PHPBB3-10239
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Extend the request class with helpers for reading server vars (server())
and HTTP request headers (header()). Refactor the existing code base
to make use of these helpers, make $_SERVER a deactivated super global.
Also introduce an is_ajax() method, which checks the X-Requested-With
header for the value 'XMLHttpRequest', which is sent by JavaScript
libraries, such as jQuery.
PHPBB3-9716
|
| |
| |
| |
| |
| |
| |
| | |
There is a large amount of conditional code for PHP < 5.2 that can be
removed with phpBB 3.1.
PHPBB3-9574
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Closing tags converted using Oleg's script.
remove-php-end-tags.py -a .
Trailing newlines added using the following where $ext is file extension.
find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s;
Extensions: php, css, html, js, xml.
PHPBB3-9556
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
PHPBB3-9583
PHPBB3-9582
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Pucci at Microsoft [Bug #57055]
If you are using SQL Server, please try to test this new dbal so we can safely include it in 3.0.8. If you
want to try it on a current phpBB version you can apply the latest version of the patch to your board which
you can find attached to the bug tracker ticket (look in the comments for the latest version, the one in the
ticket itself is outdated): http://www.phpbb.com/bugs/phpbb3/ticket.php?ticket_id=57055
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10489 89ea8834-ac86-4346-8a33-228a782c2dd0
|
|
|
|
|
|
|
|
| |
Correctly sort database backup file list by date on database restore page.
Take admin's time zone settings into account when listing database backup files.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10478 89ea8834-ac86-4346-8a33-228a782c2dd0
|