Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
51ba4a3d
Commit
51ba4a3d
authored
Nov 22, 2008
by
fantu
Browse files
FS#323 - Fix parse error in mailfilter
parent
9acf9f31
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/mail/mail_user_filter_edit.php
View file @
51ba4a3d
...
@@ -73,7 +73,7 @@ class page_action extends tform_actions {
...
@@ -73,7 +73,7 @@ class page_action extends tform_actions {
$app
->
db
->
datalogUpdate
(
'mail_user'
,
"custom_mailfilter = '
$rule_content
'"
,
'mailuser_id'
,
$this
->
dataRecord
[
"mailuser_id"
]);
$app
->
db
->
datalogUpdate
(
'mail_user'
,
"custom_mailfilter = '
$rule_content
'"
,
'mailuser_id'
,
$this
->
dataRecord
[
"mailuser_id"
]);
// set permissions
// set permissions
$app
->
db
->
query
(
"UPDATE mail_user_filter SET sys_groupid = "
.
$mailuser
[
'sys_groupid'
]
.
" WHERE filter_id = "
$this
->
id
);
$app
->
db
->
query
(
"UPDATE mail_user_filter SET sys_groupid = "
.
$mailuser
[
'sys_groupid'
]
.
" WHERE filter_id = "
.
$this
->
id
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment