Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
lolo888
ISPConfig 3
Commits
45858cbb
Commit
45858cbb
authored
Mar 04, 2010
by
tbrehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: FS#1073 - (SOAP) Problem with custom_mailfilter->mail_user_update/mail_user_add
parent
993bb543
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
interface/lib/classes/remoting.inc.php
interface/lib/classes/remoting.inc.php
+9
-6
interface/lib/classes/remoting_lib.inc.php
interface/lib/classes/remoting_lib.inc.php
+2
-0
No files found.
interface/lib/classes/remoting.inc.php
View file @
45858cbb
...
...
@@ -1942,12 +1942,12 @@ class remoting {
$app
->
uses
(
'remoting_lib'
);
//* Load the form definition
$app
->
remoting_lib
->
loadFormDef
(
$formdef_file
);
//* load the user profile of the client
$app
->
remoting_lib
->
loadUserProfile
(
$client_id
);
//* Load the form definition
$app
->
remoting_lib
->
loadFormDef
(
$formdef_file
);
//* Get the SQL query
$sql
=
$app
->
remoting_lib
->
getSQL
(
$params
,
'INSERT'
,
0
);
if
(
$app
->
remoting_lib
->
errorMessage
!=
''
)
{
...
...
@@ -1989,12 +1989,12 @@ class remoting {
$app
->
uses
(
'remoting_lib'
);
//* Load the form definition
$app
->
remoting_lib
->
loadFormDef
(
$formdef_file
);
//* load the user profile of the client
$app
->
remoting_lib
->
loadUserProfile
(
$client_id
);
//* Load the form definition
$app
->
remoting_lib
->
loadFormDef
(
$formdef_file
);
//* Get the SQL query
$sql
=
$app
->
remoting_lib
->
getSQL
(
$params
,
'UPDATE'
,
$primary_id
);
if
(
$app
->
remoting_lib
->
errorMessage
!=
''
)
{
...
...
@@ -2036,6 +2036,9 @@ class remoting {
$app
->
uses
(
'remoting_lib'
);
//* load the user profile of the client
$app
->
remoting_lib
->
loadUserProfile
(
$client_id
);
//* Load the form definition
$app
->
remoting_lib
->
loadFormDef
(
$formdef_file
);
...
...
interface/lib/classes/remoting_lib.inc.php
View file @
45858cbb
...
...
@@ -148,6 +148,7 @@ class remoting_lib {
$this
->
sys_userid
=
1
;
$this
->
sys_default_group
=
1
;
$this
->
sys_groups
=
1
;
$_SESSION
[
"s"
][
"user"
][
"typ"
]
=
'admin'
;
}
else
{
//* load system user - try with sysuser and before with userid (workarrond)
/*
...
...
@@ -165,6 +166,7 @@ class remoting_lib {
$this
->
sys_userid
=
$user
[
'userid'
];
$this
->
sys_default_group
=
$user
[
'default_group'
];
$this
->
sys_groups
=
$user
[
'groups'
];
$_SESSION
[
"s"
][
"user"
][
"typ"
]
=
$user
[
'typ'
];
}
return
true
;
...
...
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