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
47bf442c
Commit
47bf442c
authored
8 years ago
by
Laurent Destailleur
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #6167 from atm-florian/4.0
GETPOST instead of $_GET
parents
27785323
3992a92d
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/ajax/bankconciliate.php
+4
-4
4 additions, 4 deletions
htdocs/core/ajax/bankconciliate.php
with
4 additions
and
4 deletions
htdocs/core/ajax/bankconciliate.php
+
4
−
4
View file @
47bf442c
...
...
@@ -51,8 +51,8 @@ if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $
{
// Increase date
$al
=
new
AccountLine
(
$db
);
$al
->
datev_next
(
$_
GET
[
"rowid"
]
);
$al
->
fetch
(
$_
GET
[
"rowid"
]
);
$al
->
datev_next
(
GET
POST
(
'rowid'
,
'int'
)
);
$al
->
fetch
(
GET
POST
(
'rowid'
,
'int'
)
);
print
'<span>'
.
dol_print_date
(
$db
->
jdate
(
$al
->
datev
),
"day"
)
.
'</span>'
;
...
...
@@ -63,8 +63,8 @@ if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $
{
// Decrease date
$al
=
new
AccountLine
(
$db
);
$al
->
datev_previous
(
$_
GET
[
"rowid"
]
);
$al
->
fetch
(
$_
GET
[
"rowid"
]
);
$al
->
datev_previous
(
GET
POST
(
'rowid'
,
'int'
)
);
$al
->
fetch
(
GET
POST
(
'rowid'
,
'int'
)
);
print
'<span>'
.
dol_print_date
(
$db
->
jdate
(
$al
->
datev
),
"day"
)
.
'</span>'
;
...
...
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