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
lolo888
ISPConfig 3
Commits
72600be1
Commit
72600be1
authored
Sep 17, 2009
by
tbrehm
Browse files
Fixed: FS#884 - Reseller and Client can't choose Server IP!
parent
b488b5d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/web_domain_edit.php
View file @
72600be1
...
...
@@ -115,8 +115,8 @@ class page_action extends tform_actions {
$clients
=
$app
->
db
->
queryAllRecords
(
$sql
);
$client_select
=
'<option value="'
.
$client
[
'client_id'
]
.
'">'
.
$client
[
'contact_name'
]
.
'</option>'
;
if
(
is_array
(
$clients
))
{
foreach
(
$clients
as
$c
lient
)
{
$selected
=
@
(
$c
lient
[
"groupid"
]
==
$this
->
dataRecord
[
"sys_groupid"
])
?
'SELECTED'
:
''
;
foreach
(
$clients
as
$c
)
{
$selected
=
@
(
$c
[
"groupid"
]
==
$this
->
dataRecord
[
"sys_groupid"
])
?
'SELECTED'
:
''
;
$client_select
.
=
"<option value='
$client[groupid]
'
$selected
>
$client[name]
</option>
\r\n
"
;
}
}
...
...
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