Skip to content
GitLab
Menu
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
313773e2
Commit
313773e2
authored
Dec 16, 2008
by
tbrehm
Browse files
No commit message
No commit message
parent
2e08468b
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/lib/classes/modules.inc.php
View file @
313773e2
...
...
@@ -88,7 +88,7 @@ class modules {
$records
=
$app
->
dbmaster
->
queryAllRecords
(
$sql
);
foreach
(
$records
as
$d
)
{
$data
=
unserialize
(
stripslashes
(
$d
[
"data"
])
)
;
$data
=
unserialize
(
$d
[
"data"
]);
$replication_error
=
false
;
$this
->
current_datalog_id
=
$d
[
"datalog_id"
];
...
...
@@ -164,7 +164,7 @@ class modules {
$sql
=
"SELECT * FROM sys_datalog WHERE datalog_id > "
.
$conf
[
'last_datalog_id'
]
.
" AND (server_id = "
.
$conf
[
"server_id"
]
.
" OR server_id = 0) ORDER BY datalog_id"
;
$records
=
$app
->
db
->
queryAllRecords
(
$sql
);
foreach
(
$records
as
$d
)
{
$data
=
unserialize
(
stripslashes
(
$d
[
"data"
])
)
;
$data
=
unserialize
(
$d
[
"data"
]);
$this
->
current_datalog_id
=
$d
[
"datalog_id"
];
$this
->
raiseTableHook
(
$d
[
"dbtable"
],
$d
[
"action"
],
$data
);
//$app->db->query("DELETE FROM sys_datalog WHERE datalog_id = ".$rec["datalog_id"]);
...
...
Write
Preview
Supports
Markdown
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