aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_forums.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop' of https://github.com/phpbb/phpbb into feature/passwordsMarc Alexander2013-12-291-1/+1
|\ | | | | | | | | Conflicts: phpBB/config/services.yml
| * [ticket/11924] Fix some minor issues with the php event docsJoas Schilling2013-10-161-1/+1
| | | | | | | | PHPBB3-11924
* | [feature/passwords] Use passwords manager service instead of functionsMarc Alexander2013-10-131-2/+5
|/ | | | | | | | | | | The old functions phpbb_hash() and phpbb_check_hash() have been replaced with the passwords manager service in all front-end related files. The phpBB2 converter and the release_3_0_5_rc1 migration file have not been changed. The same applies to the security/hash_test that still tests the function phpbb_check_hash(). This will however make sure that the old function still works. PHPBB3-11610
* Merge branch 'develop-olympus' into developAndreas Fischer2013-09-261-1/+0
|\ | | | | | | | | * develop-olympus: [ticket/11864] Do not call exit after display_progress_bar in acp_forums
| * [ticket/11864] Do not call exit after display_progress_bar in acp_forumsMarc Alexander2013-09-251-1/+0
| | | | | | | | | | | | | | | | | | | | The progress bar is called with the method display_progress_bar() in the acp_forums files. This method then call adm_page_footer() which also calls exit_handler(). Therefore, the exit; in acp_forums after $this->display_progress_bar() is obsolete and shouldn't exist in the first place. PHPBB3-11864
* | [ticket/11700] Move all recent code to namespacesNils Adermann2013-09-161-1/+1
| | | | | | | | PHPBB3-11700
* | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into ↵Joas Schilling2013-03-031-3/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | feature/softdelete-1-permission * 'develop' of https://github.com/phpbb/phpbb3: (480 commits) [ticket/6723] Show info that message has been deleted before delivery [ticket/11385] Fix issue with migration module tool not getting extension module info [ticket/11386] Fix failing tests from constructor changes [ticket/11386] Fix circular reference error & serialize error [ticket/11386] Remove tests that check if finder cache is working [ticket/11386] Forgot to get the migration classes [ticket/11386] Update tests with new constructors for ext.manager/migrator [ticket/11386] Use finder to find migration files [ticket/11363] Fix to make get_module_infos get from all extensions [ticket/11381] Make finder able to search in all available extensions [ticket/11103] Revert whitespace changes [ticket/11103] Few more minor language things [ticket/11103] Don't call generate_board_url many times [ticket/11103] Case time in queries as an int [ticket/11103] Fix effectively installed check [ticket/11103] Remove padding from notifications for now. [ticket/11363] Fix a couple bugs and throw errors if the file not found [ticket/11372] Migrator should only check if effectively installed if not [ticket/11363] Load module info files for extensions too [ticket/11103] Notifications Migration file ... Conflicts: phpBB/includes/functions_posting.php phpBB/includes/mcp/mcp_queue.php phpBB/includes/search/fulltext_mysql.php phpBB/includes/search/fulltext_native.php phpBB/includes/search/fulltext_postgres.php phpBB/includes/search/fulltext_sphinx.php phpBB/install/database_update.php phpBB/styles/prosilver/template/ajax.js
| * | [ticket/10758] Dependency inject parameters into cache_moderators.Oleg Pudeyev2012-12-151-3/+3
| | | | | | | | | | | | | | | | | | Also add phpbb prefix since the signature is being changed anyway. PHPBB3-10758
* | | [feature/soft-delete] Fix the rest of *_approved and the delete_post unit testJoas Schilling2012-11-101-1/+1
| | | | | | | | | | | | PHPBB3-9567
* | | [feature/soft-delete] Append _approved to *_posts and *_topics column namesJoas Schilling2012-11-091-5/+5
| | | | | | | | | | | | PHPBB3-9567
* | | [feature/soft-delete] Fix forum syncing in ACP and deleting postsJoas Schilling2012-10-221-9/+13
| | | | | | | | | | | | PHPBB3-9567
* | | [feature/soft-delete] Topic visibility is already synced by sync('topic')Joas Schilling2012-10-091-1/+0
| | | | | | | | | | | | PHPBB3-9567
* | | [feature/soft-delete] Lay the groundwork for a soft-delete featureJosh Woody2012-08-291-4/+4
|/ / | | | | | | | | | | So far, I've added no new functionality. The biggest change here is adjusting the DB column names to "visibility" rather than "approved". Some things here are pretty likely to change, for example the name and location of the topic_visibility class. Happy birthday phpBB :) PHPBB3-9657
* | [feature/php-events] Fix acp_manage_forums_update_data_before and is_new_forumJoas Schilling2012-08-181-5/+2
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix core.acp_manage_forums_update_data_after varsJoas Schilling2012-08-181-1/+1
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Add event core.acp_manage_forums_move_contentJoas Schilling2012-08-081-1/+24
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix doc and naming of core.acp_manage_forums_move_childrenJoas Schilling2012-08-081-4/+21
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix doc and naming of acp_manage_forums_update_data_afterJoas Schilling2012-08-081-2/+15
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Add new event core.acp_manage_forums_update_data_beforeJoas Schilling2012-08-081-1/+19
| | | | | | | | | | | | Allows you to remove data from forum_data_sql before we update/create the forum PHPBB3-9550
* | [feature/php-events] Fix naming and doc of core.acp_manage_forums_validate_dataJoas Schilling2012-08-081-1/+10
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix naming and doc of core.acp_manage_forums_display_formJoas Schilling2012-08-081-2/+21
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix naming and doc of acp_manage_forums_initialise_dataJoas Schilling2012-08-081-6/+21
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Fix doc and naming of core.acp_forums_request_forum_dataJoas Schilling2012-08-081-1/+9
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Proper name for request forum data to avoid confusionJoas Schilling2012-08-011-1/+1
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Add additional events to acp_forums.phpJoas Schilling2012-08-011-5/+25
| | | | | | | | PHPBB3-9550
* | [feature/php-events] Replace core.acp_forums_add_forum_dataJoas Schilling2012-08-011-4/+4
| | | | | | | | | | | | Add missing global $phpbb_dispatcher, add $action and name the event better PHPBB3-9550
* | [feature/events] Removing the third trigger_event parameterMichael Cullum2012-08-011-1/+1
| | | | | | | | PHPBB3-9550
* | [feature/events] Change to use the new method of adding eventsMichael Cullum2012-08-011-3/+1
| | | | | | | | PHPBB3-9550
* | [feature/events] Fixing core.acp_forums_add_forum_dataMichael Cullum2012-08-011-5/+5
| | | | | | | | PHPBB3-9550
* | [feature/events] Add core.acp_foruns_add_forum_data ledgeMichael Cullum2012-08-011-0/+5
| | | | | | | | PHPBB3-9550
* | [ticket/10328] Renamed the JSON class, also now using autoloading.Callum Macrae2012-03-311-1/+2
| | | | | | | | | | | | | | It is no longer static, and uses autoloading. It has also been renamed from JSON to phpbb_json_response. PHPBB3-10328
* | [ticket/10328] Added a JSON class.Callum Macrae2012-03-311-2/+1
| | | | | | | | | | | | | | The JSON class adds a consistent way to send JSON to the client, making it perfect for AJAX (jQuery automatically parses it). PHPBB3-10328
* | [ticket/10271] Changed AJAX functions to $request->is_ajax().Callum Macrae2012-03-311-2/+2
| | | | | | | | PHPBB3-10271
* | [ticket/10281] AJAXified reordering forums in the ACP.Callum Macrae2012-03-311-0/+6
| | | | | | | | PHPBB3-10281
* | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | PHPBB3-9916
* | Merge branch 'develop-olympus' into developIgor Wiedler2011-11-131-6/+2
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10190] Do not show hint about permissions when editing forum settings.
| * [ticket/10190] Do not show hint about permissions when editing forum settings.Andreas Fischer2011-10-291-6/+2
| | | | | | | | PHPBB3-10190
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-10-131-1/+1
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10400] Allow forum name to be '0'
| * [ticket/10400] Allow forum name to be '0'Joas Schilling2011-10-071-1/+1
| | | | | | | | PHPBB3-10400
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
|/ | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* Merge branch 'ticket/bantu/9167' into develop-olympusJosh Woody2010-08-191-0/+3
|\ | | | | | | | | | | | | | | | | * ticket/bantu/9167: [ticket/9167] Detect and remove any dead left over shadow topics on update. [ticket/9167] Remove shadow topics from remaining forums when deleting a forum Conflicts: phpBB/install/database_update.php
| * [ticket/9167] Remove shadow topics from remaining forums when deleting a forumAndreas Fischer2010-06-111-0/+3
| | | | | | | | | | | | | | | | | | including posts. The function delete_topic_shadows() had to be reimplemented. It was there but it was completly broken and hasn't been used at all. PHPBB3-9167
* | [ticket/9697] Backlink broken when the select parent forum does not exist.Joas Schilling2010-07-021-1/+1
|/ | | | PHPBB3-9697
* [ticket/9094] Hide "Copy permissions" message, when permissions were copied.Joas Schilling2010-05-271-2/+4
| | | | | | When creating a forum, you afterwards read "Forum created successfully. Now you are able to set permissions for this forum.", also when you already copied the permissions from another forum. PHPBB3-9094
* Merge branch 'ticket/bantu/9547' into develop-olympusNils Adermann2010-05-161-2/+3
|\ | | | | | | | | * ticket/bantu/9547: [ticket/9547] Use separate constants for display/enable active topics.
| * [ticket/9547] Use separate constants for display/enable active topics.Andreas Fischer2010-05-161-2/+3
| | | | | | | | | | | | | | | | Split S_DISPLAY_ACTIVE_TOPICS into S_DISPLAY_ACTIVE_TOPICS and S_ENABLE_ACTIVE_TOPICS so we have correct default values when changing the forum type. PHPBB3-9547
* | [ticket/9510] Unable to copy permissions from and to forums you cannot seeJosh Woody2010-05-161-2/+2
|/ | | | | | This commit fixes the bug mentioned, plus a large number of regressions caused by changing the behavior of make_forum_select() (in svn r10427, dated Jan 18, 2010). It also rolls back the changes from branch "bug/58415", which are no longer needed. PHPBB3-9510
* [ticket/9514] Correctly delete big datasets when deleting a forum including ↵Andreas Fischer2010-05-141-2/+5
| | | | | | topics/posts on non-MySQL databases. PHPBB3-9514
* Allow setting parent forums regardless of permission settings. (Bug #58415)Josh Woody2010-03-171-2/+2
|
* Fix Bug #53435 - unneccessary error on forum creation screen, actually, this ↵Meik Sievertsen2009-11-081-7/+0
| | | | | | code is no longer even executed since RC4 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10258 89ea8834-ac86-4346-8a33-228a782c2dd0