diff options
author | rxu <rxu@mail.ru> | 2011-04-24 23:33:51 +0800 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2011-04-24 23:33:51 +0800 |
commit | baba66a22991e93908a8b4e7f8bfa104b3588450 (patch) | |
tree | f6c442a4d524cdd3ed7208a66bc3a73f7f6a95d5 /phpBB/includes/cache | |
parent | d811820bc11bac61076d5a92d741d22df9944af8 (diff) | |
download | forums-baba66a22991e93908a8b4e7f8bfa104b3588450.tar forums-baba66a22991e93908a8b4e7f8bfa104b3588450.tar.gz forums-baba66a22991e93908a8b4e7f8bfa104b3588450.tar.bz2 forums-baba66a22991e93908a8b4e7f8bfa104b3588450.tar.xz forums-baba66a22991e93908a8b4e7f8bfa104b3588450.zip |
[feature/attachment-management-no-reassignment] Handle privacy and some more.
- restrict files info for PM attachments;
- add an option to resync files stats if wrong;
- replace post_id sorting with post type (PM/regular post) one;
- some language fixes.
PHPBB3-9721
Diffstat (limited to 'phpBB/includes/cache')
-rw-r--r-- | phpBB/includes/cache/service.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/cache/service.php b/phpBB/includes/cache/service.php index 68026c8647..0c01953d55 100644 --- a/phpBB/includes/cache/service.php +++ b/phpBB/includes/cache/service.php @@ -194,6 +194,7 @@ class phpbb_cache_service 'max_filesize' => (int) $row['max_filesize'], 'allow_group' => $row['allow_group'], 'allow_in_pm' => $row['allow_in_pm'], + 'group_name' => $row['group_name'], ); $allowed_forums = ($row['allowed_forums']) ? unserialize(trim($row['allowed_forums'])) : array(); |