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
Zvonimir
ISPConfig 3
Commits
6f1cca79
Commit
6f1cca79
authored
Sep 11, 2012
by
mcramer
Browse files
Domain module was moved to client - changed remoting lib to match this.
parent
0baa5d4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/remoting.inc.php
View file @
6f1cca79
...
...
@@ -1835,7 +1835,7 @@ class remoting {
return
false
;
}
$app
->
uses
(
'remoting_lib'
);
$app
->
remoting_lib
->
loadFormDef
(
'../
domain
/form/domain.tform.php'
);
$app
->
remoting_lib
->
loadFormDef
(
'../
client
/form/domain.tform.php'
);
return
$app
->
remoting_lib
->
getDataRecord
(
$primary_id
);
}
...
...
@@ -1846,7 +1846,7 @@ class remoting {
$this
->
server
->
fault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
return
$this
->
insertQuery
(
'../
domain
/form/domain.tform.php'
,
$client_id
,
$params
);
return
$this
->
insertQuery
(
'../
client
/form/domain.tform.php'
,
$client_id
,
$params
);
}
//* Delete a record
...
...
@@ -1856,7 +1856,7 @@ class remoting {
$this
->
server
->
fault
(
'permission_denied'
,
'You do not have the permissions to access this function.'
);
return
false
;
}
$affected_rows
=
$this
->
deleteQuery
(
'../
domain
/form/domain.tform.php'
,
$primary_id
);
$affected_rows
=
$this
->
deleteQuery
(
'../
client
/form/domain.tform.php'
,
$primary_id
);
return
$affected_rows
;
}
...
...
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