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
ec43cefc
Commit
ec43cefc
authored
Dec 07, 2008
by
tbrehm
Browse files
Bugfix: changing Aliasdomain definition from one website to the other, leaves duplicate entries
parent
00e59763
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
ec43cefc
...
...
@@ -186,9 +186,21 @@ class apache2_plugin {
if
(
$this
->
action
!=
'insert'
)
$this
->
action
=
'update'
;
if
(
$data
[
"new"
][
"type"
]
!=
"vhost"
&&
$data
[
"new"
][
"parent_domain_id"
]
>
0
)
{
$old_parent_domain_id
=
intval
(
$data
[
"old"
][
"parent_domain_id"
]);
$new_parent_domain_id
=
intval
(
$data
[
"new"
][
"parent_domain_id"
]);
// If the parent_domain_id has been chenged, we will have to update the old site as well.
if
(
$data
[
"new"
][
"parent_domain_id"
]
!=
$data
[
"old"
][
"parent_domain_id"
])
{
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT * FROM web_domain WHERE domain_id = "
.
$old_parent_domain_id
.
" AND active = 'y'"
);
$data
[
"new"
]
=
$tmp
;
$data
[
"old"
]
=
$tmp
;
$this
->
action
=
'update'
;
$this
->
update
(
$event_name
,
$data
);
}
// This is not a vhost, so we need to update the parent record instead.
$parent_domain_id
=
intval
(
$data
[
"new"
][
"parent_domain_id"
]);
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT * FROM web_domain WHERE domain_id = "
.
$parent_domain_id
.
" AND active = 'y'"
);
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT * FROM web_domain WHERE domain_id = "
.
$new_parent_domain_id
.
" AND active = 'y'"
);
$data
[
"new"
]
=
$tmp
;
$data
[
"old"
]
=
$tmp
;
$this
->
action
=
'update'
;
...
...
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