Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
15e86875
Commit
15e86875
authored
11 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: sql syntax error
parent
70b7cb1f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/lib/admin.lib.php
+13
-8
13 additions, 8 deletions
htdocs/core/lib/admin.lib.php
with
13 additions
and
8 deletions
htdocs/core/lib/admin.lib.php
+
13
−
8
View file @
15e86875
...
...
@@ -252,18 +252,20 @@ function run_sql($sqlfile,$silent=1,$entity='',$usesavepoint=1,$handler='',$oker
// Ajout trace sur requete (eventuellement a commenter si beaucoup de requetes)
if
(
!
$silent
)
print
'<tr><td valign="top">'
.
$langs
->
trans
(
"Request"
)
.
' '
.
(
$i
+
1
)
.
" sql='"
.
dol_htmlentities
(
$newsql
,
ENT_NOQUOTES
)
.
"'</td></tr>
\n
"
;
dol_syslog
(
'Admin.lib::run_sql Request '
.
(
$i
+
1
)
.
' sql='
.
$newsql
,
LOG_DEBUG
);
$sqlmodified
=
0
;
// Replace for encrypt data
if
(
preg_match_all
(
'/__ENCRYPT\(\'([
A-Za-z0-9_\"\[\]
]+)\'\)__/i'
,
$newsql
,
$reg
))
if
(
preg_match_all
(
'/__ENCRYPT\(\'([
^\'
]+)\'\)__/i'
,
$newsql
,
$reg
))
{
$num
=
count
(
$reg
[
0
]);
for
(
$
i
=
0
;
$
i
<
$num
;
$
i
++
)
for
(
$
j
=
0
;
$
j
<
$num
;
$
j
++
)
{
$from
=
$reg
[
0
][
$
i
];
$to
=
$db
->
encrypt
(
$reg
[
1
][
$
i
],
1
);
$from
=
$reg
[
0
][
$
j
];
$to
=
$db
->
encrypt
(
$reg
[
1
][
$
j
],
1
);
$newsql
=
str_replace
(
$from
,
$to
,
$newsql
);
}
$sqlmodified
++
;
}
// Replace for decrypt data
...
...
@@ -271,12 +273,13 @@ function run_sql($sqlfile,$silent=1,$entity='',$usesavepoint=1,$handler='',$oker
{
$num
=
count
(
$reg
[
0
]);
for
(
$
i
=
0
;
$
i
<
$num
;
$
i
++
)
for
(
$
j
=
0
;
$
j
<
$num
;
$
j
++
)
{
$from
=
$reg
[
0
][
$
i
];
$to
=
$db
->
decrypt
(
$reg
[
1
][
$
i
]);
$from
=
$reg
[
0
][
$
j
];
$to
=
$db
->
decrypt
(
$reg
[
1
][
$
j
]);
$newsql
=
str_replace
(
$from
,
$to
,
$newsql
);
}
$sqlmodified
++
;
}
// Replace __x__ with rowid of insert nb x
...
...
@@ -294,9 +297,11 @@ function run_sql($sqlfile,$silent=1,$entity='',$usesavepoint=1,$handler='',$oker
$from
=
'__'
.
$cursor
.
'__'
;
$to
=
$listofinsertedrowid
[
$cursor
];
$newsql
=
str_replace
(
$from
,
$to
,
$newsql
);
dol_syslog
(
'Admin.lib::run_sql New Request '
.
(
$i
+
1
)
.
' (replacing '
.
$from
.
' to '
.
$to
.
') sql='
.
$newsql
,
LOG_DEBUG
)
;
$sqlmodified
++
;
}
if
(
$sqlmodified
)
dol_syslog
(
'Admin.lib::run_sql New Request '
.
(
$i
+
1
)
.
' (replacing '
.
$from
.
' to '
.
$to
.
') sql='
.
$newsql
,
LOG_DEBUG
);
$result
=
$db
->
query
(
$newsql
,
$usesavepoint
);
if
(
$result
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment