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
bc09783c
Commit
bc09783c
authored
Nov 15, 2015
by
Marius Cramer
Browse files
- Fixed mysql library (server version)
parent
0e3df6c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/lib/classes/db_mysql.inc.php
View file @
bc09783c
...
...
@@ -648,7 +648,7 @@ class db extends mysqli
$old_rec
=
array
();
$index_value
=
$this
->
insertID
();
$new_rec
=
$this
->
queryOneRecord
(
"SELECT * FROM ?? WHERE ? = ?"
,
$tablename
,
$index_field
,
$index_value
);
$new_rec
=
$this
->
queryOneRecord
(
"SELECT * FROM ?? WHERE ?
?
= ?"
,
$tablename
,
$index_field
,
$index_value
);
$this
->
datalogSave
(
$tablename
,
'INSERT'
,
$index_field
,
$index_value
,
$old_rec
,
$new_rec
);
return
$index_value
;
...
...
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