aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11305] Define hook finder as a service on the container.Oleg Pudeyev2013-01-021-1/+1
| | | | PHPBB3-11305
* [ticket/11305] Extract hook finder from cache service.Oleg Pudeyev2013-01-021-1/+2
| | | | | | | Unlike most other things in cache service, hook finder does not need a database connection. PHPBB3-11305
* [ticket/11306] Introduce phpbb_create_default_containerIgor Wiedler2013-01-021-12/+1
| | | | | | | Extracts default container construction to factory function, removing boilerplate duplication for container construction. PHPBB3-11306
* Merge PR #1130 branch 'EXreaction/ticket/11259' into developOleg Pudeyev2012-12-291-0/+4
|\ | | | | | | | | | | | | | | | | | | | | | | * 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/11259] adm_relative_path -> phpbb_adm_relative_pathNathan Guse2012-12-091-3/+3
| | | | | | | | | | | | We can assume they properly format their config settings, right? PHPBB3-11259
| * [ticket/11259] Make phpbb_admin_path available everywhereNathan Guse2012-12-091-0/+4
| | | | | | | | PHPBB3-11259
* | Merge remote-tracking branch 'upstream/develop' into ticket/11015Oleg Pudeyev2012-12-061-4/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (196 commits) [ticket/11219] Coding guidelines and naming consistency changes [ticket/10841] Revert more whitespace changes. [ticket/10841] Revert whitespace changes. [ticket/10841] adding space after if [ticket/10841] removing unnecessary spacing [ticket/10841] changing affectedrows check to COUNT in sql [ticket/10841] Modifying style and language selectors in UCP [ticket/11247] Fix wrong property reference in flock class. [ticket/10602] Avoid a race condition. [ticket/10602] Use last_queue_run for its intended purpose. [ticket/10716] Collect standard error from executed php process. [ticket/10716] Skip test if php is not in PATH. [ticket/10716] Exclude our dependencies from linting. [ticket/10103] New and improved wording. [ticket/10716] Only lint on php 5.3+. [ticket/10103] Assert with messages. [ticket/10103] assertLessThan/assertGreaterThan. [ticket/10103] Inline assignment is bad? [ticket/10103] $rv had too few characters. [ticket/10103] Correct flock class documentation. ... Conflicts: phpBB/includes/functions.php tests/cache/cache_test.php
| * [feature/controller] Use query string, not path info, for controller accessDavid King2012-11-171-7/+0
| | | | | | | | | | | | This is hopefully just temporary until we can fix the relative path issue. PHPBB3-10864
| * [feature/controller] Rename kernel pass class properlyDavid King2012-11-161-1/+1
| | | | | | | | PHPBB3-10864
| * [feature/controller-new] Rename kernel compiler pass classDavid King2012-11-161-0/+1
| | | | | | | | PHPBB3-10864
| * [feature/controller] Implement a front controllerDavid King2012-11-161-3/+6
| | | | | | | | PHPBB3-10864
* | Merge remote-tracking branch 'upstream/develop' into ticket/11015Igor Wiedler2012-11-121-18/+21
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (31 commits) [ticket/11194] Service tag data is stored in an array so access it correctly [ticket/11193] Instantiate a single collection_pass for all collections [ticket/11152] Basic tests for the container functions [ticket/11152] Compile the install container [ticket/11152] Throw error if services.yml is missing [ticket/11152] Remove old container processor calls [ticket/11152] Use realpath in container extensions consistently [ticket/11152] Rename collection to collection_pass [ticket/11152] Remove @api docblocks [ticket/11152] Create separate function for debug-dependent container [ticket/11152] Change phpbb_di_pass_cron to generic phpbb_di_pass_collection [ticket/11152] Convert cron_task_collection to generic di_service_collection [ticket/11152] Use relative root path in container, one dumped container per path [ticket/11152] Move container functions to a separate function file [feature/compiled-dic] Rename $phpEx to $php_ext in new code [feature/compiled-dic] Use an absolute path for core.root_path parameter [feature/compiled-dic] Update the composer.lock file [feature/compiled-dic] Purge cache to make ext services available right away [feature/compiled-dic] Fix root path when container is created after install [feature/compiled-dic] Remove old test ...
| * [ticket/11193] Instantiate a single collection_pass for all collectionsNils Adermann2012-11-111-1/+1
| | | | | | | | PHPBB3-11193
| * Merge pull request #1056 from igorw/feature/compiled-dicNils Adermann2012-11-111-18/+21
| |\ | | | | | | [feature/compiled-dic] Compile the DI Container into a cached class
| | * [ticket/11152] Rename collection to collection_passIgor Wiedler2012-11-111-1/+1
| | | | | | | | | | | | PHPBB3-11152
| | * [ticket/11152] Create separate function for debug-dependent containerIgor Wiedler2012-11-101-1/+1
| | | | | | | | | | | | PHPBB3-11152
| | * [ticket/11152] Change phpbb_di_pass_cron to generic phpbb_di_pass_collectionIgor Wiedler2012-11-101-1/+1
| | | | | | | | | | | | PHPBB3-11152
| | * [ticket/11152] Move container functions to a separate function fileIgor Wiedler2012-11-101-0/+1
| | | | | | | | | | | | PHPBB3-11152
| | * [feature/compiled-dic] Fix cron task loadingDavid King2012-11-101-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | We cannot use container tags at run time if we are using a cached, compiled container object (i.e. phpbb_cache_container) so we have to load them beforehand. PHPBB3-11152
| | * [feature/compiled-dic] Remove HttpKernel-related stuffDavid King2012-11-101-3/+1
| | | | | | | | | | | | | | | | | | These things should be added in the Controller PR instead. PHPBB3-11152
| | * [feature/compiled-dic] Compile the DI Container into a cached classDavid King2012-11-101-18/+21
| | | | | | | | | | | | PHPBB3-11152
* | | Merge remote-tracking branch 'upstream/develop' into ticket/11015Igor Wiedler2012-11-121-46/+56
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (666 commits) [ticket/11077] Remove code from old global announcements system [ticket/11189] Replace DEBUG_EXTRA with DEBUG [ticket/11189] Always log critical errors when in cron or in image output [ticket/11187] Added a blank array to fix errors in functional tests [ticket/10780] Make L_COLON available in the installer. [ticket/11183] Remove $load_extensions and weird dl() calls [ticket/10970] Added extra documentation to parse_dynamic_path. [ticket/10939] Added documentation for phpbb_request::file [ticket/10865] Use code tags for install/database_update.php. [ticket/10865] Should have been a slash. [ticket/10780] Use L_COLON on LDAP page. [ticket/10780] Use L_COLON on search backend ACP pages. [ticket/10780] Use L_COLON for "download all attachments". [ticket/10780] Use colon from language in ucp_pm_compose.php where possible. [ticket/10780] Replace colons in phpBB/adm/style/acp_ext_details.html. [ticket/10780] Replace colon usage in adm template output with {L_COLON} [ticket/10780] Replace colon usage in template output with {L_COLON} [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2) [develop-olympus] [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2) [ticket/10172] Show prosilver birthday list even if there are no birthdays. ... Conflicts: phpBB/common.php phpBB/download/file.php phpBB/includes/db/dbal.php phpBB/includes/db/firebird.php phpBB/includes/db/mssql.php phpBB/includes/db/mssql_odbc.php phpBB/includes/db/mssqlnative.php phpBB/includes/db/mysql.php phpBB/includes/db/mysqli.php phpBB/includes/db/oracle.php phpBB/includes/db/postgres.php phpBB/includes/db/sqlite.php phpBB/includes/extension/manager.php phpBB/install/database_update.php
| * | Merge remote-tracking branch 'igorw/ticket/11183' into developAndreas Fischer2012-11-101-12/+0
| |\ \ | | | | | | | | | | | | | | | | * igorw/ticket/11183: [ticket/11183] Remove $load_extensions and weird dl() calls
| | * | [ticket/11183] Remove $load_extensions and weird dl() callsIgor Wiedler2012-11-101-12/+0
| | |/ | | | | | | | | | PHPBB3-11183
| * | [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2)Igor Wiedler2012-11-091-1/+1
| |/ | | | | | | PHPBB3-11181
| * Merge branch 'develop-olympus' into developAndreas Fischer2012-10-181-1/+6
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10848] Move include up. [ticket/10848] Add phpbb_ prefix. [ticket/10848] Redirect from adm to installer correctly. Conflicts: phpBB/includes/functions.php
| | * [ticket/10848] Move include up.Oleg Pudeyev2012-10-171-1/+2
| | | | | | | | | | | | PHPBB3-10848
| | * [ticket/10848] Add phpbb_ prefix.Oleg Pudeyev2012-10-171-1/+1
| | | | | | | | | | | | PHPBB3-10848
| | * [ticket/10848] Redirect from adm to installer correctly.Oleg Pudeyev2012-10-171-1/+5
| | | | | | | | | | | | PHPBB3-10848
| * | [ticket/11101] Delay execution of container processorsIgor Wiedler2012-09-081-7/+7
| | | | | | | | | | | | | | | | | | Also fix the name of the ext processor service. PHPBB3-11101
| * | [feature/dic] Remove unneeded newlineIgor Wiedler2012-09-011-1/+0
| | | | | | | | | | | | PHPBB3-10739
| * | Merge remote-tracking branch 'upstream/develop' into feature/dicIgor Wiedler2012-08-251-1/+16
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (259 commits) [prep-release-3.0.11] Bumping version number for 3.0.11 final. [feature/php-events] Fix doc of core.viewonline_overwrite_location [feature/php-events] Fix doc of core.user_set_default_group [feature/php-events] Fix doc of core.generate_smilies_after [feature/php-events] Fix doc of core.delete_user_after [feature/php-events] Fix doc of core.delete_user_before [feature/php-events] Fix doc of core.update_username [feature/php-events] Fix doc of core.memberlist_prepare_profile_data [feature/php-events] Fix doc and position of viewonline_overwrite_location [feature/php-events] Fix doc of core.viewtopic_get_post_data [feature/php-events] Fix doc of core.viewtopic_cache_guest_data [ticket/11061] Add the --dev flag to the composer instructions in README [ticket/11060] Make sure pyrus can install everything on travis [ticket/11059] Use https for the README logo [feature/php-events] Fix acp_manage_forums_update_data_before and is_new_forum [feature/php-events] Fix core.acp_manage_forums_update_data_after vars [ticket/11032] fix language of error displayed [ticket/11052] update search backend constructor everywhere [ticket/11052] pass parametes to search construct while posting [ticket/11054] Fixed $config var description ... Conflicts: phpBB/includes/cron/task/core/tidy_cache.php phpBB/includes/cron/task/core/tidy_search.php
| | * \ Merge remote-tracking branch 'nickvergessen/feature/php-events-4' into developDavid King2012-08-201-0/+15
| | |\ \
| | | * | [feature/php-events] Fix typos in core.common docs blockJoas Schilling2012-08-081-3/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| | | * | [feature/php-events] Add docs to core.commonJoas Schilling2012-08-011-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | @todo: Add event to user::setup() after branch is updated to develop, so timezone handling is there PHPBB3-9550
| | | * | [feature/events] Adding core.common ledgeMichael Cullum2012-08-011-0/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| | * | | [ticket/11043] Change hook name back to display, since that's where we hook in.Andreas Fischer2012-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-11043
| | * | | [ticket/11043] Update template hook namePatrick Webster2012-08-031-1/+1
| | |/ / | | | | | | | | | | | | PHPBB3-11043
| * | | [feature/dic] Coding style: BracesIgor Wiedler2012-08-251-1/+2
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Load services from extensionsIgor Wiedler2012-07-211-1/+6
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Introduce DI processors instead of abusing compiler passesIgor Wiedler2012-07-211-4/+4
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Configure container via config.php, use compiler passIgor Wiedler2012-07-211-10/+11
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | Merge branch 'develop' into feature/dicIgor Wiedler2012-07-211-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (441 commits) [feature/new-tz-handling] Don't use global user but make it a parameter [feature/new-tz-handling] Fix size of suggestion button in chrome [feature/new-tz-handling] Fall back to UTC, if the timezone is invalid [feature/new-tz-handling] Add previous selected value to validation if valid [feature/new-tz-handling] Display suggestion when a different value is selected [ticket/10998] Add border-radius to forum rules block - prosilver [feature/new-tz-handling] Remove additional marking of selected items [feature/new-tz-handling] Move update helper function to new class [feature/new-tz-handling] Fix unit test [feature/new-tz-handling] Delete old variable which is not used anymore [feature/new-tz-handling] Rename $user->tz back to $user->timezone [feature/pagination-as-list] New parameter for name of start var [feature/pagination-as-list] Updates for nils comments [feature/pagination-as-list] Rename and deprecate functions [feature/pagination-as-list] Various fixes and improvements [ticket/10968] Render pagination within the template [feature/new-tz-handling] Remove "timezone might be numeric" [feature/new-tz-handling] Add function to update the timezone [feature/new-tz-handling] Correctly update user and board timezones on update [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL ... Conflicts: phpBB/common.php phpBB/composer.json phpBB/composer.lock tests/cron/task_provider_test.php
| * | | [feature/dic] Rewrite cron system to use DICIgor Wiedler2012-04-091-18/+19
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Make use of calls to cut down on boilerplateIgor Wiedler2012-03-311-6/+1
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Move class loader into DICIgor Wiedler2012-03-311-9/+8
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Move cron manager into DICIgor Wiedler2012-03-311-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Fetch cache driver explicitlyIgor Wiedler2012-03-311-2/+2
| | | | | | | | | | | | | | | | PHPBB3-10739
| * | | [feature/dic] Convert common.php to Symfony2 DependencyInjection componentIgor Wiedler2012-03-311-21/+22
| | | | | | | | | | | | | | | | PHPBB3-10739
* | | | [ticket/11015] Make DBAL classes autoloadableIgor Wiedler2012-07-211-2/+1
| |/ / |/| | | | | | | | | | | | | | | | | | | | 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