Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
don
Commits
4d95d061
Commit
4d95d061
authored
Nov 19, 2018
by
Okhin
Browse files
cs-fix
parent
444dcde9
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/controller/admin.php
View file @
4d95d061
...
...
@@ -1213,12 +1213,12 @@ class Admin extends Controller
continue
;
}
// Récupération des informations du don
$identifier
=
isset
(
$data
[
$identifier_idx
])
?
$data
[
$identifier_idx
]
:
FALSE
;
$transaction
=
isset
(
$data
[
$transaction_idx
])
?
$data
[
$transaction_idx
]
:
FALSE
;
$effect
=
isset
(
$data
[
$effect_idx
])
?
$data
[
$effect_idx
]
:
FALSE
;
$amount
=
isset
(
$data
[
$amount_idx
])
?
$data
[
$amount_idx
]
:
FALSE
;
$statut
=
isset
(
$data
[
$statut_idx
])
?
$data
[
$statut_idx
]
:
FALSE
;
if
(
$identifier
&&
$transaction
&&
$effect
&&
$amount
&&
$statut
==
FALSE
)
{
$identifier
=
isset
(
$data
[
$identifier_idx
])
?
$data
[
$identifier_idx
]
:
false
;
$transaction
=
isset
(
$data
[
$transaction_idx
])
?
$data
[
$transaction_idx
]
:
false
;
$effect
=
isset
(
$data
[
$effect_idx
])
?
$data
[
$effect_idx
]
:
false
;
$amount
=
isset
(
$data
[
$amount_idx
])
?
$data
[
$amount_idx
]
:
false
;
$statut
=
isset
(
$data
[
$statut_idx
])
?
$data
[
$statut_idx
]
:
false
;
if
(
$identifier
&&
$transaction
&&
$effect
&&
$amount
&&
$statut
==
false
)
{
continue
;
}
if
(
$statut
==
'Refusé'
)
{
...
...
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