aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10780] Make L_COLON available in the installer.Andreas Fischer2012-11-101-0/+1
| | | | PHPBB3-10780
* [ticket/10780] Use L_COLON on LDAP page.Andreas Fischer2012-11-101-8/+8
| | | | PHPBB3-10780
* [ticket/10780] Use L_COLON on search backend ACP pages.Andreas Fischer2012-11-104-13/+13
| | | | PHPBB3-10780
* [ticket/10780] Use L_COLON for "download all attachments".Andreas Fischer2012-11-102-3/+3
| | | | PHPBB3-10780
* [ticket/10780] Use colon from language in ucp_pm_compose.php where possible.Andreas Fischer2012-11-101-2/+2
| | | | PHPBB3-10780
* [ticket/10780] Replace colons in phpBB/adm/style/acp_ext_details.html.Andreas Fischer2012-11-101-13/+13
| | | | PHPBB3-10780
* [ticket/10780] Replace colon usage in adm template output with {L_COLON}Nathan Guse2012-11-1052-368/+368
| | | | | | Same as 46a7940a976ec1f54078f803ec949aa2bfbf6316, but for ACP templates PHPBB3-10780
* [ticket/10780] Replace colon usage in template output with {L_COLON}Nathan Guse2012-11-10146-668/+669
| | | | | | | Replace all the instances (I could find) where the colon is displayed to the user with {L_COLON} so it can be localised. PHPBB3-10780
* Merge remote-tracking branch 'github-igorw/ticket/11181' into developNils Adermann2012-11-097-12/+12
|\ | | | | | | | | * github-igorw/ticket/11181: [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2)
| * [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2)Igor Wiedler2012-11-098-13/+13
| | | | | | | | PHPBB3-11181
* | Merge branch 'develop-olympus' into developNils Adermann2012-11-091-1/+1
|\ \ | | | | | | | | | | | | * develop-olympus: [ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2) [develop-olympus]
| * \ Merge remote-tracking branch 'github-igorw/ticket/11181-olympus' into ↵Nils Adermann2012-11-091-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | develop-olympus * github-igorw/ticket/11181-olympus: [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) [develop-olympus]Igor Wiedler2012-11-091-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11181
* | | | Merge PR #1043 branch 'dhruvgoel92/ticket/11177' into developOleg Pudeyev2012-11-091-0/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * dhruvgoel92/ticket/11177: [ticket/11177] return no results when query has only negation
| * | | | [ticket/11177] return no results when query has only negationDhruv2012-11-091-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If search query has only -foo then instead of displaying all results that do not have foo, should display no results found. PHPBB3-11177
* | | | | Merge PR #949 branch 'dhruvgoel92/ticket/11050' into developOleg Pudeyev2012-11-094-22/+259
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dhruvgoel92/ticket/11050: [ticket/11050] make all properties protected in all search backends [ticket/11050] get_common_words() returns empty array for sphinx [ticket/11050] fix tidied search query docblock language [ticket/11050] fix min/max length docblock language [ticket/11050] multi sentences separated by period in docblocks [ticket/11050] fix separated spelling in docblock [ticket/11050] fix split words doc block language [ticket/11050] remove class word from docblocks [ticket/11050] add missing @var in native search [ticket/11050] replace user by phpbb_user [ticket/11050] fix minor comment/docblocks issues [ticket/11050] add access specifiers to native search properties [ticket/11050] fix docblocks with description before @var [ticket/11050] add missing @var [ticket/11050] remove common_words property from sphinx [ticket/11050] add access specifiers to sphinx search properties [ticket/11050] add access specifiers to mysql search properties [ticket/11050] add access specifiers to pgsql search properties
| * | | | | [ticket/11050] make all properties protected in all search backendsDhruv2012-11-094-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB-11050
| * | | | | [ticket/11050] get_common_words() returns empty array for sphinxDhruv2012-11-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB-11050
| * | | | | [ticket/11050] fix tidied search query docblock languageDhruv2012-11-094-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] fix min/max length docblock languageDhruv2012-11-093-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] multi sentences separated by period in docblocksDhruv2012-11-093-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting of each sentence should be capitalized. PHPBB3-11050
| * | | | | [ticket/11050] fix separated spelling in docblockDhruv2012-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] fix split words doc block languageDhruv2012-11-093-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] remove class word from docblocksDhruv2012-11-094-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] add missing @var in native searchDhruv2012-11-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] replace user by phpbb_userDhruv2012-11-094-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] fix minor comment/docblocks issuesDhruv2012-11-094-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | No comments should end with a period. All occurences like PostgreSQL should have proper case. PHPBB3-11050
| * | | | | [ticket/11050] add access specifiers to native search propertiesDhruv2012-11-091-3/+58
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] fix docblocks with description before @varDhruv2012-11-093-13/+26
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] add missing @varDhruv2012-11-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] remove common_words property from sphinxDhruv2012-11-091-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | common_words property is never used in sphinx class hence removed. PHPBB3-11050
| * | | | | [ticket/11050] add access specifiers to sphinx search propertiesDhruv2012-11-091-2/+75
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] add access specifiers to mysql search propertiesDhruv2012-11-091-3/+40
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
| * | | | | [ticket/11050] add access specifiers to pgsql search propertiesDhruv2012-11-091-3/+61
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11050
* | | | | | Merge PR #1047 branch 'bantu/ticket/10172' into developOleg Pudeyev2012-11-091-1/+1
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | * bantu/ticket/10172: [ticket/10172] Show prosilver birthday list even if there are no birthdays.
| * | | | | [ticket/10172] Show prosilver birthday list even if there are no birthdays.Andreas Fischer2012-11-091-1/+1
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-10172
* | | | | Merge PR #1044 branch 'develop-olympus' into developOleg Pudeyev2012-11-091-2/+0
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | * develop-olympus: [ticket/11178] Do not set error_reporting to E_ALL in database_updater.php
| * | | | Merge PR #1044 branch 'bantu/ticket/11178' into develop-olympusOleg Pudeyev2012-11-091-2/+0
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/11178: [ticket/11178] Do not set error_reporting to E_ALL in database_updater.php
| | * | | | [ticket/11178] Do not set error_reporting to E_ALL in database_updater.phpAndreas Fischer2012-11-091-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Take whatever startup.php sets instead. This especially takes care of E_STRICT messages that are generated because of PHP4 compatibility. PHPBB3-11178
* | | | | | Merge PR #1042 branch 'develop-olympus' into developOleg Pudeyev2012-11-092-11/+60
|\ \ \ \ \ \ | |/ / / / / | | | / / / | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10897] Combine bot updates and bot delete. [ticket/10897] Use same code/query for deleting. [ticket/10897] Make sure the user we're fetching is a bot. [ticket/10897] Do not handle IP address. There is no need. [ticket/10897] Update by user_id instead of bot_name. [ticket/10897] Move bot delete data to the relevant foreach loop. [ticket/10897] Add comment about what's going on. [ticket/10897] Remove unnecessary string casting. [ticket/10897] Add space after foreach. [ticket/10897] Update bots during phpBB update [ticket/10897] Bot list updated
| * | | | Merge PR #1042 branch 'bantu/ticket/10897' into develop-olympusOleg Pudeyev2012-11-092-11/+60
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10897: [ticket/10897] Combine bot updates and bot delete. [ticket/10897] Use same code/query for deleting. [ticket/10897] Make sure the user we're fetching is a bot. [ticket/10897] Do not handle IP address. There is no need. [ticket/10897] Update by user_id instead of bot_name. [ticket/10897] Move bot delete data to the relevant foreach loop. [ticket/10897] Add comment about what's going on. [ticket/10897] Remove unnecessary string casting. [ticket/10897] Add space after foreach. [ticket/10897] Update bots during phpBB update [ticket/10897] Bot list updated
| | * | | [ticket/10897] Combine bot updates and bot delete.Andreas Fischer2012-11-091-40/+31
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Use same code/query for deleting.Andreas Fischer2012-11-091-9/+6
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Make sure the user we're fetching is a bot.Andreas Fischer2012-11-091-2/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Do not handle IP address. There is no need.Andreas Fischer2012-11-091-13/+7
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Update by user_id instead of bot_name.Andreas Fischer2012-11-091-7/+8
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Move bot delete data to the relevant foreach loop.Andreas Fischer2012-11-091-9/+9
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Add comment about what's going on.Andreas Fischer2012-11-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Remove unnecessary string casting.Andreas Fischer2012-11-091-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897
| | * | | [ticket/10897] Add space after foreach.Andreas Fischer2012-11-091-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-10897