| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | | |
| | |
| | |
| | | |
PHPBB3-9790
|
| | | |
| | |
| | |
| | | |
PHPBB3-9790
|
| | | |
| | |
| | |
| | |
| | |
| | | |
This also unloads the cache before the file is send.
PHPBB3-9790
|
| | | |
| | |
| | |
| | | |
PHPBB3-9790
|
| |\ \ \
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | | |
* develop-olympus:
[ticket/9859] Remove the years from the copyright statements in docs files.
[ticket/9859] Remove the year from the copyright meta tag in docs/*.html
[ticket/9859] Remove the meta copyright tag as well.
[ticket/9859] Remove the credit line comment from all html files.
[ticket/9859] Remove years in credit line from some more files.
|
| | |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* ticket/bantu/9859:
[ticket/9859] Remove the years from the copyright statements in docs files.
[ticket/9859] Remove the year from the copyright meta tag in docs/*.html
[ticket/9859] Remove the meta copyright tag as well.
[ticket/9859] Remove the credit line comment from all html files.
[ticket/9859] Remove years in credit line from some more files.
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9859
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9859
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9859
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9859
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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
|
| |\ \ \ \
| |/ / /
| | | /
| |_|/
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* develop-olympus:
[ticket/9933] Remove empty word check.
[ticket/9933] Add $use_unicode parameter to get_censor_preg_expression().
[ticket/9933] Adjust word censor regex for non-unicode mode.
Conflicts:
phpBB/includes/functions.php
Also remove static $unicode_support.
|
| | | |
| | |
| | |
| | | |
PHPBB3-9933
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Rename $unicode to $unicode_support, pass in $use_unicode defaulting to true.
In unit tests we can now pass in $use_unicode as false and also test the code
path that is taken when PCRE does not support unicode.
PHPBB3-9933
|
| | |/
| |
| |
| | |
PHPBB3-9933
|
| | |
| |
| |
| |
| |
| | |
It has been refactored to includes/cache/service.php.
PHPBB3-9983
|
| |\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* task/naderman/config-class:
[task/config-class] Do not create multiple cache driver instances.
[task/config-class] Add an attribute for the table name in phpbb_config_db.
[task/config-class] Correctly merge cached config with dynamically loaded data.
[task/config-class] Always specify the config table to use.
[task/config-class] Fix db config constructor param order
[task/config-class] Implemented a config class to replace the global array.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Retrieve the driver from the service instead of creating new ones
over and over from the factory.
PHPBB3-9988
|
| | | |
| | |
| | |
| | | |
PHPBB3-9988
|
| | | |
| | |
| | |
| | | |
PHPBB3-9988
|
| | | |
| | |
| | |
| | | |
PHPBB3-9988
|
| | | |
| | |
| | |
| | | |
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
|
| | | |
| | |
| | |
| | | |
PHPBB3-9983
|
| |\ \ \
| |/ /
|/| /
| |/ |
|
| | |\ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
explode('|', '') and explode('|', NULL) both return array(0 => '') which can
cause filespec::check_content() to reject everything starting with a '<'
character in case $config['mime_triggers'] is an empty string or not set.
fileupload::set_disallowed_content() now filters out empty strings by calling
array_diff() on the passed array, so setting $config['mime_triggers'] to an
empty string will turn off mime checking completely.
On the other side we want to fail safe if $config['mime_triggers'] is not set
at all. To do this, the array fileupload::$disallowed_content now contains some
default strings to be filtered out.
PHPBB3-9764
|
| | | |
| | |
| | |
| | | |
PHPBB3-6109
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Replaced the logo with the current one and changed the language strings.
PHPBB3-6109
|
| | | |
| | |
| | |
| | | |
PHPBB3-9983
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* develop-olympus:
[ticket/9933] Create unit test for word censor regular expression.
[ticket/9933] Move word censor regex into separate function in functions.php
[ticket/9933] Wrong handling consecutive multiple asterisks in word censor
Conflicts:
phpBB/includes/cache.php
|
| | | |
| | |
| | |
| | | |
PHPBB3-9933
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Fix consecutive asterisks issue in word censor.
PHPBB3-9933
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit also ports all ascraeus tests to the new format.
Conflicts:
tests/all_tests.php
tests/network/all_tests.php
tests/request/all_tests.php
tests/request/request_var.php
tests/template/templates/includephp.html
|
| | |\ \
| | | |
| | | |
| | | |
| | | | |
* ticket/bantu/9589:
[ticket/9589] nginx.conf.sample -> nginx.sample.conf
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9589
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-9746
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This adds a function that normalises internet protocol addresses.
While there should be no problem at all when handling IPv4 addresses, the many
different representations of the exact same IPv6 address and webservers mapping
IPv4-addresses into the IPv6 space made it necessary to add such a function.
PHPBB3-9746
|
| |\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* develop-olympus:
[ticket/9348] Call phpbb_set_encoding() on config value 'default_dateformat'.
[ticket/9953] Set focus to password on re-authentication
[ticket/9905] Add SQLite to the DSN description
[ticket/9859] Remove years from the credit line.
|
| | |\ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
* ticket/bantu/9859:
[ticket/9859] Remove years from the credit line.
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-9859
|
| | |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* ticket/bantu/9348:
[ticket/9348] Call phpbb_set_encoding() on config value 'default_dateformat'.
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Call phpbb_set_encoding() on 'default_dateformat' to properly re-encode
non-ascii characters that might be in default_dateformat.
E.g. "d M Y à H:i"
PHPBB3-9348
|
| | |\ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* ticket/noxwizard/9953:
[ticket/9953] Set focus to password on re-authentication
|