diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2005-05-15 20:08:05 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-05-15 20:08:05 +0000 |
| commit | 4c207e5510a77931d3eed6fc065f294c8f675f82 (patch) | |
| tree | b6fe4179e814bb78f4f448353c99827e00275c4a /phpBB/includes/functions_privmsgs.php | |
| parent | 4983385f4e37093e03ad128021a1d4d55f304303 (diff) | |
| download | forums-4c207e5510a77931d3eed6fc065f294c8f675f82.tar forums-4c207e5510a77931d3eed6fc065f294c8f675f82.tar.gz forums-4c207e5510a77931d3eed6fc065f294c8f675f82.tar.bz2 forums-4c207e5510a77931d3eed6fc065f294c8f675f82.tar.xz forums-4c207e5510a77931d3eed6fc065f294c8f675f82.zip | |
- fixed url parsing ([] breakage)
git-svn-id: file:///svn/phpbb/trunk@5151 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
| -rw-r--r-- | phpBB/includes/functions_privmsgs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 2dad1e6477..2532cafd1a 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -325,7 +325,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false) $row['friend'] = (isset($zebra[$row['author_id']])) ? $zebra[$row['author_id']]['friend'] : 0; $row['foe'] = (isset($zebra[$row['author_id']])) ? $zebra[$row['author_id']]['foe'] : 0; $row['user_in_group'] = $user->data['group_id']; - + // Check Rule - this should be very quick since we have all informations we need $is_match = false; foreach ($user_rules as $rule_row) |
