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
34c33743
Commit
34c33743
authored
Dec 03, 2018
by
Okhin
Browse files
Testing and setting SESSION.error and SESSION.message if they're not defined
parent
37b6d473
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
www/index.php
View file @
34c33743
...
...
@@ -42,6 +42,12 @@ $f3->set('ONERROR', function ($f3) {
// If there is any problem, replace the current csrf
$csrf
=
md5
(
rand
());
$f3
->
CSRF
=
$csrf
;
// If neither error or message are set, define them
if
(
!
$f3
->
exists
(
'SESSION.message'
))
$f3
->
push
(
'SESSION.message'
,
''
);
if
(
!
$f3
->
exists
(
'SESSION.error'
))
$f3
->
push
(
'SESSION.error'
,
''
);
$f3
->
get
(
'container'
)[
'session'
]
->
set
(
'csrf'
,
$csrf
);
while
(
ob_get_level
())
{
...
...
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