aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [ticket/10758] Yes, only one empty line.Oleg Pudeyev2012-12-221-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10758
| * | | | | | [ticket/10758] Add deprecated tags.Oleg Pudeyev2012-12-201-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10758
| * | | | | | [ticket/10758] Add compat functions.Oleg Pudeyev2012-12-201-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10758
| * | | | | | [ticket/10758] Extract obtain_user_data for the benefit of tests.Oleg Pudeyev2012-12-192-6/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10758
| * | | | | | [ticket/10758] Spelling fix.Oleg Pudeyev2012-12-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10758
| * | | | | | [ticket/10758] Dependency inject parameters into update_foes.Oleg Pudeyev2012-12-153-8/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also add phpbb prefix since the signature is being changed anyway. PHPBB3-10758
| * | | | | | [ticket/10758] Dependency inject parameters into cache_moderators.Oleg Pudeyev2012-12-157-33/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also add phpbb prefix since the signature is being changed anyway. PHPBB3-10758
* | | | | | | Merge PR #1152 branch 'develop-olympus' into developOleg Pudeyev2012-12-221-17/+30
|\ \ \ \ \ \ \ | | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11278] Comment out the code for dropping the Q&A tables [ticket/11278] Fix not running queries from db tools in database update Conflicts: phpBB/install/database_update.php
| * | | | | | Merge PR #1152 branch 'nickvergessen/ticket/11278' into develop-olympusOleg Pudeyev2012-12-221-17/+30
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/11278: [ticket/11278] Comment out the code for dropping the Q&A tables [ticket/11278] Fix not running queries from db tools in database update
| | * | | | | | [ticket/11278] Comment out the code for dropping the Q&A tablesJoas Schilling2012-12-211-6/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a bug, vanilla phpbb could not create captcha tables in 3.0.8 on firebird. It was possible for board administrators to adjust the code to work. If code was manually adjusted by board administrators, index names would not be the same as what 3.0.9 and newer expect. This code fragment drops captcha tables, destroying all entered Q&A captcha configuration, such that when Q&A is configured next the respective tables will be created with corrent index names. If you wish to preserve your Q&A captcha configuration, you can manually rename indexes to the currently expected name: phpbb_captcha_questions_lang_iso => phpbb_captcha_question_lang phpbb_captcha_answers_question_id => phpbb_captcha_answers_qid Again, this needs to be done only if a board was manually modified to fix broken captcha code. PHPBB3-11278
| | * | | | | | [ticket/11278] Fix not running queries from db tools in database updateJoas Schilling2012-12-191-13/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The db_tools class is running in return mode, which means that the queries are not run, but just returned. Therefor the broken tables were not removed from the database. PHPBB3-11278
* | | | | | | | Merge remote-tracking branch 'p/ticket/11248' into developAndreas Fischer2012-12-222-1742/+1772
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/11248: [ticket/11248] Convert line endings to LF - develop edition.
| * | | | | | | | [ticket/11248] Convert line endings to LF - develop edition.Oleg Pudeyev2012-12-072-1742/+1772
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11248
* | | | | | | | | Merge remote-tracking branch 'p/ticket/11037' into developAndreas Fischer2012-12-2213-20/+17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p/ticket/11037: [ticket/11037] Eliminate global $db usage in cache drivers.
| * | | | | | | | | [ticket/11037] Eliminate global $db usage in cache drivers.Oleg Pudeyev2012-12-2013-20/+17
| | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only time $db is needed in cache drivers is to navigate the result set in sql_save. Pass it as a parameter in that function. PHPBB3-11037
* | | | | | | | | Merge remote-tracking branch 'nickvergessen/ticket/11277' into developAndreas Fischer2012-12-211-1/+5
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/11277: [ticket/11277] Correctly remove user_dst column on database update
| * | | | | | | | | [ticket/11277] Correctly remove user_dst column on database updateJoas Schilling2012-12-211-1/+5
| | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The db_tools is running in "return statement" mode, so the queries to modify the data are not executed, but just returned. PHPBB3-11277
* | | | | | | | | [ticket/11287] Add template event naming to docs/coding-guidelines.htmlDavid King2012-12-201-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11287
* | | | | | | | | Merge PR #1148 branch 'imkingdavid/feature/events' into developOleg Pudeyev2012-12-2025-10/+183
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * imkingdavid/feature/events: (65 commits) [feature/events] Fix improperly named event in documentation [feature/events] Fix alphabetization of events [feature/events] Put events in alphabetical order [feature/events] Make EVENTS.md lowercase [feature/events] Use ` to escape HTML tags in markdown [feature/events] Remove HTML tags from markdown so they don't get parsed [feature/events] Remove extraneous space [feature/events] Add markdown template event documentation file [feature/events] forumlist_body_last_post_title_after -> _prepend (subsilver2) [feature/events] Fix overall_footer_end -> overall_footer_after (subsilver2) [feature/events] Fix typo in event name [feature/events] Fix more subsilver2 events [feature/events] Fix some subsilver2 events [feature/events] Append "_append" to viewtopic_print_head [feature/events] ucp_pm_viewmessage_print_head_append [feature/events] simple_footer_end -> simple_footer_after [feature/events] Append "_prepend" to posting_editor_options [feature/events] Fix events in prosilver overall_header.html [feature/events] Fix events in prosilver overall_footer.html [feature/events] Rename index_body_info_blocks: index_body_stat_blocks_before ...
| * | | | | | | | | [feature/events] Fix improperly named event in documentationDavid King2012-12-201-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix alphabetization of eventsDavid King2012-12-201-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Put events in alphabetical orderDavid King2012-12-201-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Make EVENTS.md lowercaseDavid King2012-12-201-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Use ` to escape HTML tags in markdownDavid King2012-12-171-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Remove HTML tags from markdown so they don't get parsedDavid King2012-12-171-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Remove extraneous spaceDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Add markdown template event documentation fileDavid King2012-12-171-0/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] forumlist_body_last_post_title_after -> _prepend (subsilver2)David King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix overall_footer_end -> overall_footer_after (subsilver2)David King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix typo in event nameDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix more subsilver2 eventsDavid King2012-12-172-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix some subsilver2 eventsDavid King2012-12-175-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Append "_append" to viewtopic_print_headDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] ucp_pm_viewmessage_print_head_appendDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] simple_footer_end -> simple_footer_afterDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Append "_prepend" to posting_editor_optionsDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix events in prosilver overall_header.htmlDavid King2012-12-171-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix events in prosilver overall_footer.htmlDavid King2012-12-171-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Rename index_body_info_blocks: index_body_stat_blocks_beforeDavid King2012-12-171-1/+1
| | | | | | | | | |
| * | | | | | | | | [feature/events] Append "_append" to acp_simple_header_headDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] acp_simple_footer_end -> acp_simple_footer_afterDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Append "_append" to acp_overall_header_headDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Change _end suffix to _after in acp_overall_footer_endDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Append "_append" to acp_users_overview_optionsDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Fix names of events in adm/style/acp_main.htmlDavid King2012-12-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Append "_append" to acp_forums_normal_settingsDavid King2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] There is nothing between head and body.Oleg Pudeyev2012-12-173-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Rename event_main_actions to acp_main_actionsJoas Schilling2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Add location (prepend) to event nameMichael Cullum2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | | | | | [feature/events] Adjust to use prepend, not beforeMichael Cullum2012-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550