Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karthikeyan
ISPConfig 3
Commits
fb06ccf6
Commit
fb06ccf6
authored
Dec 21, 2008
by
tbrehm
Browse files
Options
Downloads
Patches
Plain Diff
Fixed ftpuser and shelluser prefix.
parent
3f3aa84a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
interface/web/sites/ftp_user_edit.php
+2
-1
2 additions, 1 deletion
interface/web/sites/ftp_user_edit.php
interface/web/sites/shell_user_edit.php
+2
-1
2 additions, 1 deletion
interface/web/sites/shell_user_edit.php
with
4 additions
and
2 deletions
interface/web/sites/ftp_user_edit.php
+
2
−
1
View file @
fb06ccf6
...
...
@@ -173,7 +173,8 @@ class page_action extends tform_actions {
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
}
else
{
// Get the group-id from the data itself
$client_group_id
=
$this
->
dataRecord
[
'client_group_id'
];
$web
=
$app
->
db
->
queryOneRecord
(
"SELECT sys_groupid FROM web_domain WHERE domain_id = "
.
intval
(
$this
->
dataRecord
[
'parent_domain_id'
]));
$client_group_id
=
$web
[
'sys_groupid'
];
}
/* get the name of the client */
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT name FROM sys_group WHERE groupid = "
.
$client_group_id
);
...
...
This diff is collapsed.
Click to expand it.
interface/web/sites/shell_user_edit.php
+
2
−
1
View file @
fb06ccf6
...
...
@@ -195,7 +195,8 @@ class page_action extends tform_actions {
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
}
else
{
// Get the group-id from the data itself
$client_group_id
=
$this
->
dataRecord
[
'client_group_id'
];
$web
=
$app
->
db
->
queryOneRecord
(
"SELECT sys_groupid FROM web_domain WHERE domain_id = "
.
intval
(
$this
->
dataRecord
[
'parent_domain_id'
]));
$client_group_id
=
$web
[
'sys_groupid'
];
}
/* get the name of the client */
$tmp
=
$app
->
db
->
queryOneRecord
(
"SELECT name FROM sys_group WHERE groupid = "
.
$client_group_id
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment