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
ISPConfig
ISPConfig 3
Commits
ba3cf0dc
Commit
ba3cf0dc
authored
Dec 06, 2008
by
tbrehm
Browse files
Fixed y bug in replication that affected the deletion of data records.
parent
12e3ba49
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/lib/classes/modules.inc.php
View file @
ba3cf0dc
...
...
@@ -129,7 +129,7 @@ class modules {
if
(
$d
[
"action"
]
==
'd'
)
{
$idx
=
explode
(
":"
,
$d
[
"dbidx"
]);
$sql
=
"DELETE FROM
$d[dbtable]
SET
"
;
$sql
=
"DELETE FROM
$d[dbtable]
"
;
$sql
.
=
" WHERE
$idx[0]
=
$idx[1]
"
;
$app
->
db
->
query
(
$sql
);
if
(
$app
->
db
->
errorNumber
>
0
)
{
...
...
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