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
Packages & Registries
Packages & Registries
Container Registry
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
Game Over!
ISPConfig 3
Commits
a9ce366b
Commit
a9ce366b
authored
Jul 27, 2017
by
Marius Burkard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- remoting: assigned client template delete, fixes #4734
parent
b3829038
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
interface/lib/classes/remote.d/client.inc.php
interface/lib/classes/remote.d/client.inc.php
+2
-2
No files found.
interface/lib/classes/remote.d/client.inc.php
View file @
a9ce366b
...
...
@@ -331,7 +331,7 @@ class remoting_client extends remoting {
return
false
;
}
if
(
@
is_numeric
(
$client_id
)
&&
@
is_numeric
(
$template_id
))
{
if
(
@
is_numeric
(
$client_id
)
&&
@
is_numeric
(
$
assigned_
template_id
))
{
// check if client exists
$check
=
$app
->
db
->
queryOneRecord
(
'SELECT `client_id` FROM `client` WHERE `client_id` = ?'
,
$client_id
);
if
(
!
$check
)
{
...
...
@@ -349,7 +349,7 @@ class remoting_client extends remoting {
$this
->
_set_client_formdata
(
$client_id
);
$sql
=
"DELETE FROM `client_template_assigned` WHERE `assigned_template_id` = ? AND `client_id` = ?"
;
$app
->
db
->
query
(
$sql
,
$template_id
,
$client_id
);
$app
->
db
->
query
(
$sql
,
$
assigned_
template_id
,
$client_id
);
$affected_rows
=
$app
->
db
->
affectedRows
();
$app
->
plugin
->
raiseEvent
(
'client:client:on_after_update'
,
$this
);
...
...
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