-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream.php
More file actions
38 lines (38 loc) · 1.02 KB
/
stream.php
File metadata and controls
38 lines (38 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
ob_start();
global $has_password;
$has_password = 0;
if(isset($_COOKIE["phpMp_password"])) {
$password = $_COOKIE["phpMp_password"];
$has_password = 1;
}
include "config.php";
include "theme.php";
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-Type: text/html; charset=UTF-8");
?>
<html>
<head>
<META HTTP-EQUIV="Expires" CONTENT="Thu, 01 Dec 1994 16:00:00 GMT">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<?php
// php won't interpret inside of the style block
print "<style type=\"text/css\">\n";
print "* {\n";
print " font-family: " . $fonts["all"] . ";\n";
print "}\n";
print "</style>\n";
?>
</head>
<body link="<?php print $colors["links"]["link"]; ?>"
vlink="<?php print $colors["links"]["visual"]; ?>"
alink="<?php print $colors["links"]["active"]; ?>"
bgcolor="<?php print $colors["background"]; ?>">
<?php
include "stream_body.php";
?>
</body>
</html>