aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10614] Unbreak all_available on extension manager.Oleg Pudeyev2012-02-111-1/+2
| | | | | | | | By default RecursiveIteratorIterator skips all directories. This results in extension manager not finding any extensions. Add RecursiveIteratorIterator::SELF_FIRST to correct this. PHPBB3-10614
* [ticket/10614] Check if cache exists before destroying itIgor Wiedler2012-02-091-5/+20
| | | | PHPBB3-10614
* [ticket/10614] Remove ext manager exceptions for nowIgor Wiedler2012-02-091-19/+1
| | | | PHPBB3-10614
* [ticket/10614] Refactor list command to use manager APIIgor Wiedler2012-02-092-53/+33
| | | | PHPBB3-10614
* [ticket/10614] Add purge commandIgor Wiedler2012-02-091-0/+17
| | | | PHPBB3-10614
* [ticket/10614] Tweak list output, show state, purge cache, handle missing extsIgor Wiedler2012-02-092-11/+38
| | | | PHPBB3-10614
* [ticket/10614] Make script accessible from anywhereIgor Wiedler2012-02-091-1/+1
| | | | PHPBB3-10614
* [ticket/10614] Better usage outputIgor Wiedler2012-02-061-29/+21
| | | | PHPBB3-10614
* [ticket/10614] Add a script to enable, disable and view status of extensions.Oleg Pudeyev2012-02-031-0/+135
| | | | PHPBB3-10614
* Merge branch 'develop-olympus' into developAndreas Fischer2012-01-231-18/+2
|\ | | | | | | | | * develop-olympus: [ticket/10580] Remove checking of server timezone and DST when registering
| * Merge remote-tracking branch 'Dickyf/ticket/10580' into develop-olympusAndreas Fischer2012-01-231-18/+2
| |\ | | | | | | | | | | | | * Dickyf/ticket/10580: [ticket/10580] Remove checking of server timezone and DST when registering
| | * [ticket/10580] Remove checking of server timezone and DST when registeringRichard Foote2012-01-211-18/+2
| | | | | | | | | | | | | | | | | | | | | | | | Remove checking of server timezone and DST. It causes a problem by selecting the wrong timezone when registering when the board_timezone is 1 hour less than the server timezone. PHPBB3-10580
* | | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-151-1/+1
|\ \ \ | |/ / | | | | | | | | | * develop-olympus: [ticket/10589] Add alias to 'user_birthday' in $leap_year_birthdays definition
| * | Merge remote-tracking branch 'rxu/ticket/10589' into develop-olympusAndreas Fischer2012-01-151-1/+1
| |\ \ | | |/ | |/| | | | | | | * rxu/ticket/10589: [ticket/10589] Add alias to 'user_birthday' in $leap_year_birthdays definition
| | * [ticket/10589] Add alias to 'user_birthday' in $leap_year_birthdays definitionrxu2012-01-151-1/+1
| |/ | | | | | | PHPBB3-10589
* | Merge pull request #531 from p/ticket/10579Igor Wiedler2012-01-121-1/+1
|\ \ | | | | | | [ticket/10579] Delete extra v2 from license block.
| * | [ticket/10579] Delete extra v2 from license block.Oleg Pudeyev2012-01-121-1/+1
| | | | | | | | | | | | PHPBB3-10579
* | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-01-122-6/+13
|\ \ \ | |/ / |/| / | |/ | | | | * develop-olympus: [ticket/9079] Always log backtrace to error log when logging errors. [ticket/9079] Display backtrace on all E_USER_ERROR errors, not only SQL errors
| * Merge remote-tracking branch 'bantu/ticket/9079' into develop-olympusOleg Pudeyev2012-01-122-6/+13
| |\ | | | | | | | | | | | | | | | * bantu/ticket/9079: [ticket/9079] Always log backtrace to error log when logging errors. [ticket/9079] Display backtrace on all E_USER_ERROR errors, not only SQL errors
| | * [ticket/9079] Always log backtrace to error log when logging errors.Oleg Pudeyev2011-12-241-4/+9
| | | | | | | | | | | | PHPBB3-9079
| | * [ticket/9079] Display backtrace on all E_USER_ERROR errors, not only SQL errorsAndreas Fischer2011-12-242-5/+7
| | | | | | | | | | | | PHPBB3-9079
* | | Merge branch 'develop-olympus' into developOleg Pudeyev2012-01-063-0/+10
|\ \ \ | |/ / | | | | | | | | | * develop-olympus: [ticket/10563] Show deactivated styles below active styles in acp
| * | Merge remote-tracking branch 'cyberalien/ticket/10563' into develop-olympusOleg Pudeyev2012-01-063-0/+10
| |\ \ | | | | | | | | | | | | | | | | * cyberalien/ticket/10563: [ticket/10563] Show deactivated styles below active styles in acp
| | * | [ticket/10563] Show deactivated styles below active styles in acpVjacheslav Trushkin2012-01-023-0/+10
| |/ / | | | | | | | | | | | | | | | Separates active and deactivated styles in styles list in acp PHPBB3-10563
* | | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-021-4/+8
|\ \ \ | |/ / | | | | | | | | | | | | * develop-olympus: [ticket/10407] Fix check for empty image paths in convertor [ticket/10407] Fix check for empty image paths in convertor
| * | Merge remote-tracking branch 'Dickyf/ticket/10407a' into develop-olympusAndreas Fischer2012-01-021-4/+8
| |\ \ | | | | | | | | | | | | | | | | | | | | * Dickyf/ticket/10407a: [ticket/10407] Fix check for empty image paths in convertor [ticket/10407] Fix check for empty image paths in convertor
| | * | [ticket/10407] Fix check for empty image paths in convertorRichard Foote2012-01-021-16/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This applies to avatar_path,avatar_gallery_path,smilies_path and upload_path. Currently, the convertor gets each path from the config table and adds a trailing slash. If there is no entry in the config table for the path, the path can never be empty because of the added trailing slash. This patch will check the path without the trailing slash to see if the path is actually empty. PHPBB3-10407
| | * | [ticket/10407] Fix check for empty image paths in convertorRichard Foote2011-12-291-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This applies to avatar_path,avatar_gallery_path,smilies_path and upload_path. Currently, the convertor gets each path from the config table and adds a trailing slash. If there is no entry in the config table for the path, the path can never be empty because of the added trailing slash. This patch will temporarily remove the trailing slash, then check if the path is empty. PHPBB3-10407
* | | | Merge branch 'ticket/unknownbliss/9916' into developAndreas Fischer2012-01-0250-52/+50
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/unknownbliss/9916: [ticket/9916] Updating license in non-distributed files [ticket/9916] Updating header license and removing Version $Id$
| * | | | [ticket/9916] Updating license in non-distributed filesUnknown2012-01-0240-40/+40
| | | | | | | | | | | | | | | | | | | | PHPBB3-9916
| * | | | [ticket/9916] Updating header license and removing Version $Id$Unknown2012-01-0210-12/+10
|/ / / / | | | | | | | | | | | | PHPBB3-9916
* | | | Merge remote-tracking branch 'unknownbliss/ticket/9916' into developAndreas Fischer2012-01-02280-516/+281
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * unknownbliss/ticket/9916: [ticket/9916] Updating header license and removing Version $Id$
| * | | | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-31280-516/+281
| | | | | | | | | | | | | | | | | | | | PHPBB3-9916
* | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-0272-91/+72
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/9916] Changing header in non-distributed files [ticket/9916] Changing coding guidelines license [ticket/9916] Updating License in the header Conflicts: tests/mock/cache.php
| * | | | Merge remote-tracking branch 'unknownbliss/ticket/9916-olympus' into ↵Andreas Fischer2012-01-0272-91/+72
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-olympus * unknownbliss/ticket/9916-olympus: [ticket/9916] Changing header in non-distributed files [ticket/9916] Changing coding guidelines license [ticket/9916] Updating License in the header
| | * | | | [ticket/9916] Changing header in non-distributed filesUnknown2012-01-0226-43/+25
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9916
| | * | | | [ticket/9916] Changing coding guidelines licenseUnknown2012-01-021-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9916
| | * | | | [ticket/9916] Updating License in the headerUnknown2012-01-0245-45/+45
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9916
* | | | | | Merge remote-tracking branch 'imkingdavid/ticket/10557' into developAndreas Fischer2012-01-021-0/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * imkingdavid/ticket/10557: [ticket/10557] Added IN_PHPBB check to functions_acp.php
| * | | | | | [ticket/10557] Added IN_PHPBB check to functions_acp.phpDavid King2011-12-281-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10557
* | | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-012-2/+8
|\ \ \ \ \ \ \ | |/ / / / / / |/| / / / / / | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [prep-release-3.0.10] Bumping version number for 3.0.10 final. Conflicts: phpBB/install/database_update.php
| * | | | | Merge branch 'prep-release-3.0.10' into develop-olympusAndreas Fischer2012-01-012-2/+8
| |\ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.10: [prep-release-3.0.10] Bumping version number for 3.0.10 final. Conflicts: phpBB/includes/constants.php phpBB/install/database_update.php phpBB/install/schemas/schema_data.sql
| | * | | | [prep-release-3.0.10] Bumping version number for 3.0.10 final.Andreas Fischer2012-01-014-5/+11
| | | | | |
* | | | | | Merge branch 'develop-olympus' into developIgor Wiedler2011-12-281-3/+3
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10538] Call htmlspecialchars_decode() on Jabber and SMTP passwords.
| * | | | | Merge remote-tracking branch 'bantu/ticket/10538' into develop-olympusIgor Wiedler2011-12-281-3/+3
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10538: [ticket/10538] Call htmlspecialchars_decode() on Jabber and SMTP passwords.
| | * | | | | [ticket/10538] Call htmlspecialchars_decode() on Jabber and SMTP passwords.Andreas Fischer2011-12-191-3/+3
| | | |_|/ / | | |/| | | | | | | | | | | | | | | PHPBB3-10538
* | | | | | Merge branch 'develop-olympus' into developAndreas Fischer2011-12-251-0/+2
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/9681] Add password length to security settings
| * | | | | Merge remote-tracking branch 'p/ticket/9681' into develop-olympusAndreas Fischer2011-12-251-0/+2
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/9681: [ticket/9681] Add password length to security settings
| | * | | | | [ticket/9681] Add password length to security settingsIgor Wiedler2011-12-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9681
* | | | | | | Merge remote-tracking branch 'p/ticket/10507' into developAndreas Fischer2011-12-252-7/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/10507: [ticket/10507] develop does not have imagesets, fix lower test.