aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/startup.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/15227] Remove function deregister_globals, not neededjaviexin2017-05-211-58/+0
| | | | PHPBB3-15227
* [ticket/15227] Remove STRIP, as always falsejaviexin2017-05-211-5/+1
| | | | PHPBB3-15227
* [ticket/15227] Check PHP version and remove old unused codejaviexin2017-05-121-21/+10
| | | | PHPBB3-15227
* Merge branch '3.1.x'Andreas Fischer2015-06-091-1/+5
|\ | | | | | | | | | | * 3.1.x: [ticket/13923] CS [ticket/13923] Update startup.php
| * [ticket/13923] CSTristan Darricau2015-06-091-1/+1
| | | | | | | | PHPBB3-13923
| * [ticket/13923] Update startup.phpAJ Quick2015-06-061-1/+5
| | | | | | | | | | | | | | | | | | | | While suppressing the output from the 'set_magic_quotes_runtime(0)' is sufficient with normal phpBB installs, using this file in association with the oauth plugin will cause an error on some versions of PHP. This fixes a potential bug where set_magic_quotes_runtime is depreciated in newer versions of PHP. PHPBB3-13923
* | [ticket/12487] Update PHP codeGaëtan Muller2015-01-111-30/+13
|/ | | | PHPBB3-12487
* Merge branch 'develop-olympus' into prep-release-3.1.2Joas Schilling2014-11-251-23/+5
|\
| * [ticket/13376] Revert unnecessary change for cookies called GLOBALS 92f554e3Nils Adermann2014-11-251-23/+5
| | | | | | | | | | | | Also introduce a clear cookie message hardcoded just in case. PHPBB3-13376
* | [ticket/11266] Better message for when composer dependencies are missing.Andreas Fischer2014-05-291-1/+5
| | | | | | | | PHPBB3-11266
* | [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | | | | | PHPBB3-12594
* | [ticket/10893] Update the usage of ComposerJoseph Warner2012-05-131-3/+3
| | | | | | | | | | | | | | | | Changes 'vendor/.composer/autoload.php' to 'vendor/autoload.php' as per the change in the way that composer works as noted https://groups.google.com/forum/#!msg/composer-dev/fWIs3KocwoA/nU3aLko9LhQJ PHPBB3-10893
* | [feature/event-dispatcher] Rename PHPBB_NO_AUTOLOAD=>PHPBB_NO_COMPOSER_AUTOLOADIgor Wiedler2012-03-281-3/+3
| | | | | | | | PHPBB3-9550
* | [feature/event-dispatcher] Change composer autoloading optionsIgor Wiedler2012-03-241-11/+21
| | | | | | | | | | | | Check if composer's generated autoloader is present, and if not give an error. PHPBB3-9550
* | Merge remote-tracking branch 'upstream/develop' into feature/event-dispatcherIgor Wiedler2012-03-231-1/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (30 commits) [task/travis] Refactor php version check for dbunit install [task/travis] Exclude functional and slow tests [ticket/10719] Revert "Skip functional tests on PHP 5.2" [task/travis-develop2] Update version from 5.3 to 5.3.2 [task/travis] Dropping support for 5.2 in develop branch [task/travis] Some more small travis fixes [task/travis] Rename travis phpunit config files [task/travis] Fixing some travis issues [ticket/10684] Adjust function and parameter name, minor changes. [task/travis] Add automated testing to readme [task/travis] Removing development information [task/travis] Adding Travis Continuous Intergration Support [ticket/10704] minor typo in a comment [ticket/10717] Fix profile field sample in prosilver´s memberlist_view.html [ticket/10691] Fixed the speed of creating search index [task/php54-ascraeus] Bring p_master#module_auth into PHP 5 era. [task/php54] Disable E_STRICT in Olympus when running on PHP 5.4. [task/php54] Refactor error_reporting call slightly. [ticket/10690] Fix undefined UNAPPROVED_POSTS_ZERO_TOTAL in queue [ticket/10689] Fix "First character"-option in "Find a member"-search ...
| * \ Merge branch 'develop-olympus' into developAndreas Fischer2012-03-221-1/+2
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | With 5efdbfa5e4e3c00c08167cdfff912ee4937f4fd2 reverted. * develop-olympus: [task/php54] Disable E_STRICT in Olympus when running on PHP 5.4. [task/php54] Refactor error_reporting call slightly.
| | * [task/php54] Disable E_STRICT in Olympus when running on PHP 5.4.Oleg Pudeyev2012-03-151-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We cannot use static in Olympus because it must be PHP 4 compatible. Therefore disable E_STRICT for Olympus. This commit should be reverted for Ascraeus. PHPBB3-10615
| | * [task/php54] Refactor error_reporting call slightly.Oleg Pudeyev2012-03-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Separate error level assignment into a variable in this commit so that the only difference between Olympus and Ascraeus is the addition of logic altering $level. PHPBB3-10615
* | | [feature/event-dispatcher] Implement configurable autoloader selection.Oleg Pudeyev2012-03-181-0/+21
|/ / | | | | | | | | | | The code is in startup.php which should be used by all scripts. PHPBB3-9550
* | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-1/+1
|/ | | | PHPBB3-9916
* [ticket/10420] Update includes/startup.php for PHP 5.4.Andreas Fischer2011-10-181-2/+2
| | | | | | | | | PHP 5.4 dropped support for register globals and magic quotes. Calling set_magic_quotes_runtime() on PHP 5.4 actually results in an E_CORE_ERROR error. PHPBB3-10420
* [ticket/7729] Prevent date/time functions from throwing E_WARNING on PHP 5.3.Andreas Fischer2011-06-251-0/+28
| | | | PHPBB3-7729
* [ticket/10218] Prevent startime from being overwritten by deregister_globals()Yuriy Rusko2011-06-151-2/+3
| | | | PHPBB3-10218
* [ticket/10218] Moving global deregistration, etc. to startup.phpYuriy Rusko2011-06-141-0/+121
Because startup.php deletes all variables, the constants in database_update are used to preserve settings at the top. PHPBB3-10218