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
isp
ISPConfig 3
Commits
8677124a
Commit
8677124a
authored
May 18, 2012
by
tbrehm
Browse files
Fixed: FS#2240 - Update 3.0.4.5 problem on all ftp users ( not working )
parent
86e3d5c2
Changes
1
Show whitespace changes
Inline
Side-by-side
interface/web/sites/tools.inc.php
View file @
8677124a
...
@@ -55,8 +55,8 @@ function replacePrefix($name, $dataRecord) {
...
@@ -55,8 +55,8 @@ function replacePrefix($name, $dataRecord) {
function
getClientName
(
$dataRecord
)
{
function
getClientName
(
$dataRecord
)
{
global
$app
,
$conf
;
global
$app
,
$conf
;
if
(
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
||
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
if
(
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
// Get the group-id of the user
// Get the group-id of the user
if the logged in user is neither admin nor reseller
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
}
else
{
}
else
{
// Get the group-id from the data itself
// Get the group-id from the data itself
...
@@ -81,7 +81,7 @@ function getClientName($dataRecord) {
...
@@ -81,7 +81,7 @@ function getClientName($dataRecord) {
function
getClientID
(
$dataRecord
)
{
function
getClientID
(
$dataRecord
)
{
global
$app
,
$conf
;
global
$app
,
$conf
;
if
(
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
||
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
if
(
$_SESSION
[
"s"
][
"user"
][
"typ"
]
!=
'admin'
&&
!
$app
->
auth
->
has_clients
(
$_SESSION
[
's'
][
'user'
][
'userid'
]))
{
// Get the group-id of the user
// Get the group-id of the user
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
$client_group_id
=
$_SESSION
[
"s"
][
"user"
][
"default_group"
];
}
else
{
}
else
{
...
...
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