aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/driver/driver.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop-olympus' into developNils Adermann2013-07-131-1/+1
| | | | | | | | | | * develop-olympus: [ticket/11112] Do not change opensource.org link to https [ticket/11112] Use https for user-visible links to phpbb.com Conflicts: phpBB/language/en/install.php phpBB/language/en/ucp.php
* [ticket/11476] Remove pass-by-reference from sql_mutli_insertJoas Schilling2013-03-271-2/+2
| | | | | | | The method never writes to the array passed by reference. So it can be passed by value instead to avoid certain problems. PHPBB3-11476
* [ticket/11305] Check for $cache being null before using it in db drivers.Oleg Pudeyev2013-01-021-2/+2
| | | | | | | There is no reason why db drivers must have a cache to work. They query the database, that part works without caches. PHPBB3-11305
* Merge PR #1130 branch 'EXreaction/ticket/11259' into developOleg Pudeyev2012-12-291-2/+2
| | | | | | | | | | | | * EXreaction/ticket/11259: [ticket/11259] htmlspecialchars($phpbb_admin_path) [ticket/11259] adm_relative_path -> phpbb_adm_relative_path [ticket/11259] Also make adm_relative_path available in the container [ticket/11259] Make phpbb_admin_path available everywhere Conflicts: phpBB/install/index.php phpBB/install/install_update.php
* [ticket/11015] Fix some more whitespace in the driverIgor Wiedler2012-11-151-21/+21
| | | | PHPBB3-11015
* [ticket/11015] Fix line endings of phpbb_db_driver to LFIgor Wiedler2012-11-151-1021/+1021
| | | | PHPBB3-11015
* [ticket/11015] Fixup some things from the big mergeIgor Wiedler2012-11-121-4/+4
| | | | PHPBB3-11015
* [ticket/11015] Correctly set sql_layer in driver base classIgor Wiedler2012-07-211-1/+1
| | | | PHPBB3-11015
* [ticket/11015] Make DBAL classes autoloadableIgor Wiedler2012-07-211-0/+1044
PHPBB3-11015 This allows us to just create the object without having to include the driver first. However, it also means that users must specify the full class name in config.php