style duplication
This commit is contained in:
commit
1852a2a1ae
|
@ -47,11 +47,18 @@ function admin_import() {
|
||||||
"\r\n";
|
"\r\n";
|
||||||
fputs($fp, $head);
|
fputs($fp, $head);
|
||||||
$Zeilen = -1;
|
$Zeilen = -1;
|
||||||
|
echo "<pre>";
|
||||||
while (!feof($fp)) {
|
while (!feof($fp)) {
|
||||||
$Temp = fgets($fp, 1024);
|
$Temp = fgets($fp, 1024);
|
||||||
|
|
||||||
|
// show header
|
||||||
|
if ($Zeilen == -1) {
|
||||||
|
echo $Temp;
|
||||||
|
}
|
||||||
|
|
||||||
// ende des headers
|
// ende des headers
|
||||||
if ($Temp == "f20\r\n") {
|
if ($Temp == "\r\n") {
|
||||||
|
echo "</pre>\n";
|
||||||
$Zeilen = 0;
|
$Zeilen = 0;
|
||||||
$Temp = "";
|
$Temp = "";
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,7 +67,8 @@ function user_settings() {
|
||||||
"8" => "Pastel Style",
|
"8" => "Pastel Style",
|
||||||
"4" => "Test Style",
|
"4" => "Test Style",
|
||||||
"9" => "Test Style 21c3",
|
"9" => "Test Style 21c3",
|
||||||
"10" => "msquare (28C3)"
|
"10" => "msquare (cccamp2011)",
|
||||||
|
"11" => "msquare (28c3)"
|
||||||
), $user['color']),
|
), $user['color']),
|
||||||
'text_language' => Get_Text(20),
|
'text_language' => Get_Text(20),
|
||||||
'language_label' => Get_Text(21),
|
'language_label' => Get_Text(21),
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#logo {
|
#logo {
|
||||||
background: url('../pic/engelsystem_logo.png') top left no-repeat;
|
background: url('../pic/engelsystem_logo_cccamp2011.png') top left no-repeat;
|
||||||
display: block;
|
display: block;
|
||||||
height: 69px;
|
height: 69px;
|
||||||
margin: 10px auto;
|
margin: 10px auto;
|
||||||
width: 378px;
|
width: 523px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:hover > td {
|
tr:hover > td {
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#logo {
|
||||||
|
background: url('../pic/engelsystem_logo_28c3.png') top left no-repeat;
|
||||||
|
display: block;
|
||||||
|
height: 69px;
|
||||||
|
margin: 10px auto;
|
||||||
|
width: 378px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:hover > td {
|
||||||
|
background: #f0f0f0;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.5 KiB |
Loading…
Reference in New Issue