Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMS-SUEE_2.0
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eric Laufer
VMS-SUEE_2.0
Commits
a92bb61d
There was an error fetching the commit references. Please try again later.
Commit
a92bb61d
authored
4 years ago
by
Eric Laufer
Browse files
Options
Downloads
Patches
Plain Diff
BUg
parent
63689b41
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
adminforce/index.php
+0
-12
0 additions, 12 deletions
adminforce/index.php
with
0 additions
and
12 deletions
adminforce/index.php
+
0
−
12
View file @
a92bb61d
<?php
if
(
file_exists
(
$_SERVER
[
'DOCUMENT_ROOT'
]
.
'/error'
)){
error_reporting
(
E_ALL
);
ini_set
(
'display_errors'
,
'On'
);
ini_set
(
'error_log'
,
$_SERVER
[
'DOCUMENT_ROOT'
]
.
'/error/error-'
.
date
(
"d.m.Y"
,
time
())
.
'.log'
);
ini_set
(
'log_errors'
,
'On'
);
if
(
!
file_exists
(
$_SERVER
[
'DOCUMENT_ROOT'
]
.
'/error/error-'
.
date
(
"d.m.Y"
,
time
())
.
'.log'
)){
$datei
=
fopen
(
$_SERVER
[
'DOCUMENT_ROOT'
]
.
'/error/error-'
.
date
(
"d.m.Y"
,
time
())
.
'.log'
,
"w"
);
fwrite
(
$datei
,
" "
,
100
);
fclose
(
$datei
);
}
}
if
(
isset
(
$_GET
[
'logout'
])
&&
$_GET
[
'logout'
]
==
true
)
{
session_start
();
unset
(
$_SESSION
[
'admin'
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment