Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMS-z
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Christoph Zysik
VMS-z
Commits
017fba74
Commit
017fba74
authored
7 years ago
by
Eric Laufer
Browse files
Options
Downloads
Patches
Plain Diff
1.1
parent
26044b8a
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wartung.php
+35
-0
35 additions, 0 deletions
wartung.php
with
35 additions
and
0 deletions
wartung.php
0 → 100644
+
35
−
0
View file @
017fba74
<?php
require_once
(
'lib/layout.lib.php'
);
?>
<html>
<head>
<title>
..:: Wartungsmodus::..
</title>
<meta
name=
"Content-language"
content=
"DE"
>
<meta
name=
"Page-type"
content=
"Nicht Gewinnorientiert"
>
<meta
name=
"Robots"
content=
"INDEX,FOLLOW"
>
<link
rel=
"stylesheet"
href=
"/css/main.css"
type=
"text/css"
>
</head>
<body
topmargin=
"0"
leftmargin=
"0"
>
<?php
// Variabeln
$filename
=
'lib/texte/wartung.txt'
;
// Datei auslesen
$fp
=
fopen
(
$filename
,
"r"
);
$inhalt
=
fread
(
$fp
,
filesize
(
$filename
));
fclose
(
$fp
);
$inhalt
=
str_replace
(
'\\'
,
''
,
$inhalt
);
?>
<table
width=
"500"
align=
"center"
height=
"100%"
>
<tr>
<td
height=
"100%"
align=
"center"
valign=
"middle"
>
<?php
head
(
"Diese Seite ist im Wartungsmodus"
);
echo
nl2br
(
$inhalt
);
foot
();
?>
</td>
</tr>
</table>
</body>
</html>
\ No newline at end of file
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