aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [feature/soft-delete] Remove unneeded require_once()Joas Schilling2012-10-023-9/+0
| | | | PHPBB3-9657
* [feature/soft-delete] Update doc blocks to proper formatJoas Schilling2012-10-021-14/+25
| | | | PHPBB3-9657
* [feature/soft-delete] Add unit tests for get_global_visibility_sql()Joas Schilling2012-10-014-8/+165
| | | | PHPBB3-9657
* [feature/soft-delete] Add unit tests for get_forums_visibility_sql()Joas Schilling2012-10-016-10/+288
| | | | PHPBB3-9657
* [feature/soft-delete] Add unit tests for get_visibility_sql()Joas Schilling2012-10-012-0/+196
| | | | PHPBB3-9657
* [feature/soft-delete] Remove old unit testsJoas Schilling2012-10-014-546/+0
| | | | PHPBB3-9657
* [feature/soft-delete] Comment out user_posts update for the momentJoas Schilling2012-10-012-1/+11
| | | | | | It should rely on the permissions of the post not the current user. PHPBB3-9657
* [feature/soft-delete] Allow setting the visibility change reasonJoas Schilling2012-09-282-18/+39
| | | | PHPBB3-9657
* [feature/soft-delete] Add columns for soft delete detailsJoas Schilling2012-09-289-7/+61
| | | | PHPBB3-9657
* [feature/soft-delete] Comment out stuff about f_restore for performance reasonJoas Schilling2012-09-281-2/+16
| | | | PHPBB3-9657
* [feature/soft-delete] Update column names in update script and add permissionsJoas Schilling2012-08-301-10/+57
| | | | PHPBB3-9657
* [feature/soft-delete] Fix some more usages of _approved column namesJoas Schilling2012-08-305-50/+16
| | | | PHPBB3-9657
* [feature/soft-delete] Update development scripts with new column namesJoas Schilling2012-08-303-3/+3
| | | | PHPBB3-9657
* [feature/soft-delete] Update search to use $post_visibilityJoas Schilling2012-08-305-93/+36
| | | | | | Todo: Sphinx currently does not respect this setting at all. PHPBB3-9657
* [feature/soft-delete] Try to fix search.phpJoas Schilling2012-08-302-34/+20
| | | | | | at least it's running now, but the performance is not very good. PHPBB3-9657
* [feature/soft-delete] Add get_visibility_sql_forums based on globalJoas Schilling2012-08-302-7/+50
| | | | | | | | | The resulting query is 4-times faster, as the forum_id IN () arrays are smaller and we need less AND/OR to build the hole query. The main difference between those two functions is, that this one takes an array of included ids and the _global one takes an array of excluded ids. PHPBB3-9657
* [feature/soft-delete] Fix copy-paste fail for database update on the indexJoas Schilling2012-08-301-1/+1
| | | | PHPBB3-9657
* [feature/soft-delete] Simplification part2: user can see all item visibilitiesJoas Schilling2012-08-295-14/+36
| | | | | | | If the user can see all visibilities, we can simply leave out the query part, instead of adding a bunch of ANDs. PHPBB3-9657
* [feature/soft-delete] Simplify the query output if the user has m_restoreJoas Schilling2012-08-291-2/+6
| | | | PHPBB3-9657
* [feature/soft-delete] Update posts and topics table with database_update.phpJoas Schilling2012-08-291-2/+40
| | | | PHPBB3-9657
* [feature/soft-delete] Update restoring feature to use ajax if requested.Joas Schilling2012-08-295-12/+33
| | | | | | | | Also fixes the mcp as a hole: - displayes a success message - gives a link to the post, if only one was restored PHPBB3-9657
* [feature/soft-delete] Use the variable which holds the correct item statusJoas Schilling2012-08-291-1/+1
| | | | PHPBB3-9657
* [feature/soft-delete] Fix missing AND in queryJoas Schilling2012-08-291-2/+2
| | | | PHPBB3-9657
* [feature/soft-delete] Fix displaying of "deleted post" note in viewtopicJoas Schilling2012-08-292-1/+6
| | | | PHPBB3-9657
* [feature/soft-delete] Remove imageset/ which was created by merge conflictJoas Schilling2012-08-292-117/+0
| | | | | | We don't have imagesets in 3.1 anymore. PHPBB3-9657
* [feature/soft-delete] Fix the schema files to the correct line ends againJoas Schilling2012-08-297-8940/+8958
| | | | PHPBB3-9657
* [feature/soft-delete] Fix typo in column name topic_visibilityJoas Schilling2012-08-291-1/+1
| | | | PHPBB3-9657
* [feature/soft-delete] Use autoloading for content_visibility classJoas Schilling2012-08-292-6/+2
| | | | PHPBB3-9657
* [feature/soft-delete] Fix some small bugsJosh Woody2012-08-298-25/+98
| | | | | | | | To wit: using non-existing constant POST_DELETED in posting.php; first test post was initially unapproved; soft delete checkbox appeared at post time Links pointing to the wrong place. PHPBB3-9657
* [feature/soft-delete] Add a processor for action == restore in mcp_queue.phpJosh Woody2012-08-291-2/+43
| | | | | | Restoring a post within mcp_queue.php didn't do anything before this commit. Now it does, by way of a function which is very similar to approve_post. PHPBB3-9657
* [feature/soft-delete] Rename phpbb_visibility class to phpbb_content_visibilityJosh Woody2012-08-2912-72/+72
| | | | | | Rename the class to more accurately reflect what it does. PHPBB3-9657
* [feature/soft-delete] Add unit tests for the phpbb_visibility classJosh Woody2012-08-297-8/+609
| | | | | | Add unit tests for the phpbb_visibility class. Adjust the phpbb_visibility class to pass those unit tests. The changes are pretty small, actually. PHPBB3-9657
* [feature/soft-delete] Implement the ability to soft-delete and restore postsJosh Woody2012-08-2920-195/+551
| | | | | | The soft delete feature seems to work. Tests are pending. A real icon is pending. Add the permissions and the interface to soft-delete posts. Also able to restore posts via the MCP queue PHPBB3-9657
* [feature/soft-delete] I told you I was going to rename the class!Josh Woody2012-08-299-44/+83
| | | | | | Rename topic_visibility class to phpbb_visibility. Also a bit of work to the class itself, mostly cleanup and adding the comments that I'd previously written. PHPBB3-9657
* [feature/soft-delete] Correct some mistakes in e8d47Josh Woody2012-08-291-0/+137
| | | | | | Notably: Uncomment the die() in create_schema_files, and add the class that makes everything tick. PHPBB3-9657
* [feature/soft-delete] Lay the groundwork for a soft-delete featureJosh Woody2012-08-2936-9149/+9164
| | | | | | 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
* Merge remote-tracking branch 'mvinny/ticket/11065' into developAndreas Fischer2012-08-271-3/+1
|\ | | | | | | | | * mvinny/ticket/11065: [ticket/11065] Close li tag on topic display options at MCP
| * [ticket/11065] Close li tag on topic display options at MCPVinny2012-08-261-3/+1
| | | | | | | | PHPBB3-11065
* | Merge remote-tracking branch 'Fyorl/feature/attach-dl' into developAndreas Fischer2012-08-269-139/+463
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/feature/attach-dl: (75 commits) [feature/attach-dl] Removed the use of some abbreviations [feature/attach-dl] Changed $files_added checks [feature/attach-dl] Renamed $post_id to $post_msg_id [feature/attach-dl] Fixed a comment [feature/attach-dl] Optimised an sql query [feature/attach-dl] Fixed the logic in an sql statement [feature/attch-dl] $forum_id cast to int [feature/attach-dl] Fixed $file_added to $files_added [feature/attach-dl] Moved definition of $archive_name [feature/attach-dl] Swapped the order of an if statement [feature/attach-dl] Cast variables to int [feature/attach-dl] Added $archive_path [feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma [feature/attach-dl] Renamed $count to $files_added [feature/attach-dl] Removed sprintf() use [feature/attach-dl] Removed need for array_keys() [feature/attach-dl] Added multiple attachment downloads to PMs [feature/attach-dl] Removed reliance on current($row) [feature/attach-dl] Renamed to phpbb_download_handle_forum_auth [feature/attach-dl] Moved PM authentication handling into own function ...
| * | [feature/attach-dl] Removed the use of some abbreviationsFyorl2012-08-203-4/+4
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Changed $files_added checksFyorl2012-08-201-2/+2
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Renamed $post_id to $post_msg_idFyorl2012-08-173-9/+9
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Fixed a commentFyorl2012-08-151-1/+1
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Optimised an sql queryFyorl2012-08-151-2/+2
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Fixed the logic in an sql statementFyorl2012-08-151-2/+4
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attch-dl] $forum_id cast to intFyorl2012-08-151-1/+1
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Fixed $file_added to $files_addedFyorl2012-08-151-1/+1
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Moved definition of $archive_nameFyorl2012-08-151-1/+1
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Swapped the order of an if statementFyorl2012-08-151-3/+3
| | | | | | | | | | | | PHPBB3-11042
| * | [feature/attach-dl] Cast variables to intFyorl2012-08-141-3/+3
| | | | | | | | | | | | PHPBB3-11042