diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2012-01-25 14:30:52 +0000 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-19 08:27:31 -0400 |
commit | 95b5109c622f8acd2d57343b97e3c2b6b157863a (patch) | |
tree | cf73f29660c54932fba72741f3726f175708fdbd /phpBB/install | |
parent | 1fa39ea722ab8e27402d3db67d5f11587570a96d (diff) | |
download | forums-95b5109c622f8acd2d57343b97e3c2b6b157863a.tar forums-95b5109c622f8acd2d57343b97e3c2b6b157863a.tar.gz forums-95b5109c622f8acd2d57343b97e3c2b6b157863a.tar.bz2 forums-95b5109c622f8acd2d57343b97e3c2b6b157863a.tar.xz forums-95b5109c622f8acd2d57343b97e3c2b6b157863a.zip |
[feature/save-post-on-report] The complete changes for this feature
This covers all the changes so that when a report is made, the post
itself is copied and displayed in the MCP instead of the current post.
Unfortunatly, I made all commits in the wrong way and they were lost.
Now I have only the final files.
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 843e8c2f23..0a2c3998c4 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1088,6 +1088,9 @@ function database_update_info() PROFILE_FIELDS_TABLE => array( 'field_show_on_pm' => array('BOOL', 0), ), + REPORTS_TABLE => array( + 'reported_post' => array('TEXT', ''), + ), ), 'change_columns' => array( GROUPS_TABLE => array( |