aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/driver/postgres.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11305] Check for $cache being null before using it in db drivers.Oleg Pudeyev2013-01-021-5/+5
| | | | | | | There is no reason why db drivers must have a cache to work. They query the database, that part works without caches. PHPBB3-11305
* [ticket/11037] Eliminate global $db usage in cache drivers.Oleg Pudeyev2012-12-201-1/+1
| | | | | | | The only time $db is needed in cache drivers is to navigate the result set in sql_save. Pass it as a parameter in that function. PHPBB3-11037
* [ticket/11015] Fixup some things from the big mergeIgor Wiedler2012-11-121-9/+9
| | | | PHPBB3-11015
* [ticket/11015] Make DBAL classes autoloadableIgor Wiedler2012-07-211-0/+491
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