Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lolo888
ISPConfig 3
Commits
aebc94e9
Commit
aebc94e9
authored
Jul 26, 2013
by
mrtnzlml
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug, see
http://www.howtoforge.com/forums/showthread.php?p=298953
parent
48af7df6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
interface/lib/classes/remoting_lib.inc.php
interface/lib/classes/remoting_lib.inc.php
+2
-2
No files found.
interface/lib/classes/remoting_lib.inc.php
View file @
aebc94e9
...
...
@@ -784,8 +784,8 @@ class remoting_lib {
if
(
$primary_id
!=
0
)
{
// update client permissions only if client_id > 0
if
(
$this
->
formDef
[
'auth'
]
==
'yes'
&&
$this
->
client_id
>
0
)
{
$sql_update
.
=
'`sys_userid` =
'
.
$this
->
sys_userid
.
'
, '
;
$sql_update
.
=
'`sys_groupid` =
'
.
$this
->
sys_default_group
.
'
, '
;
$sql_update
.
=
'`sys_userid` =
"'
.
$this
->
sys_userid
.
'"
, '
;
$sql_update
.
=
'`sys_groupid` =
"'
.
$this
->
sys_default_group
.
'"
, '
;
}
$sql_update
=
substr
(
$sql_update
,
0
,
-
2
);
$sql
=
"UPDATE "
.
$escape
.
$this
->
formDef
[
'db_table'
]
.
$escape
.
" SET "
.
$sql_update
.
" WHERE "
.
$this
->
formDef
[
'db_table_idx'
]
.
" = "
.
$primary_id
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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