| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Its only set to false, then true in one case, and only checked once.
So remove it because it is unnecessary.
PHPBB3-11029
|
|
|
|
|
|
|
| |
Even if the file does not exist, it may be in the cache, so return
$parsed_array just in case
PHPBB3-11029
|
|
|
|
|
|
|
|
|
|
| |
continue was used where it should not have been, causing a fatal error
This file is loaded on every page to check if style.cfg has changed. If it
has not, the user is not affected, so if it does not exist, the user should
not be affected either.
PHPBB3-11029
|
|
|
|
|
|
|
| |
Changing obtain_cfg_items to work only with style
because other components no longer exist
PHPBB3-10743
|
|
|
|
| |
PHPBB3-9916
|
|
|
|
|
|
|
|
|
| |
- restrict files info for PM attachments;
- add an option to resync files stats if wrong;
- replace post_id sorting with post type (PM/regular post) one;
- some language fixes.
PHPBB3-9721
|
|
|
|
|
|
|
| |
Retrieve the driver from the service instead of creating new ones
over and over from the factory.
PHPBB3-9988
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
There is a phpbb_config class which simply holds an array and does not persist
any data. It implements ArrayAccess, Countable and IteratorAggregate to allow
regular use of configuration as if it was still an array. The phpbb_config_db
class depends on an instance of the dbal and a cache driver. It obtains the
configuration data from cache and database as necessary and persists data to
the database.
The functions set_config and set_config_count remain for backward compatability
but they only call methods on the new config class now instead of directly
manipulating the database and cache.
PHPBB3-9988
|
|
They are now refered to as cache drivers rather than ACM classes. The
additional utility functions from the original cache class have been
moved to the cache_service. The class loader is now instantiated without
a cache instance and passed one as soon as it is constructed to allow
autoloading the cache classes.
PHPBB3-9983
|