minor css-changes
git-svn-id: svn://svn.cccv.de/engel-system@295 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
parent
e788c1743f
commit
3810b07944
|
@ -1,8 +1,8 @@
|
|||
<?PHP
|
||||
$title = "Himmel";
|
||||
$header = "Deine persönlichen Einstellungen";
|
||||
include ("./inc/header.php");
|
||||
include ("./inc/crypt.php");
|
||||
include ("../../includes/header.php");
|
||||
include ("../../includes/crypt.php");
|
||||
|
||||
if (!IsSet($_POST["action"]))
|
||||
{
|
||||
|
@ -147,12 +147,12 @@ if (!IsSet($_POST["action"]))
|
|||
echo "\t\t<tr>\n\t\t\t<td>". Get_Text(23). "<br></td>\n\t\t</tr>\n";
|
||||
echo "\t\t<tr>\n";
|
||||
echo "\t\t\t<td>\n";
|
||||
echo "\t\t\t\t<select name=\"eAvatar\" onChange=\"document.avatar.src = './inc/avatar/avatar' + this.value + '.gif'\"".
|
||||
"onKeyup=\"document.avatar.src = './inc/avatar/avatar' + this.value + '.gif'\">\n";
|
||||
for ($i=1; file_exists("./inc/avatar/avatar$i.gif"); $i++ )
|
||||
echo "\t\t\t\t<select name=\"eAvatar\" onChange=\"document.avatar.src = '/pic/avatar/avatar' + this.value + '.gif'\"".
|
||||
"onKeyup=\"document.avatar.src = '/pic/avatar/avatar' + this.value + '.gif'\">\n";
|
||||
for ($i=1; file_exists("/pic/avatar/avatar$i.gif"); $i++ )
|
||||
echo "\t\t\t\t\t<option value=\"$i\"". ($_SESSION['Avatar'] == $i ? " selected":""). ">avatar$i</option>\n";
|
||||
echo "\t\t\t\t</select> \n";
|
||||
echo "\t\t\t\t<img src=\"./inc/avatar/avatar". $_SESSION['Avatar']. ".gif\" name=\"avatar\" border=\"0\" align=\"top\">\n";
|
||||
echo "\t\t\t\t<img src=\"/pic/avatar/avatar". $_SESSION['Avatar']. ".gif\" name=\"avatar\" border=\"0\" align=\"top\">\n";
|
||||
echo "\t\t\t</td>\n\t\t</tr>\n";
|
||||
echo "\t</table>\n";
|
||||
echo "\t<input type=\"submit\" value=\"". Get_Text("save"),"\">\n";
|
||||
|
@ -306,5 +306,5 @@ case 'delPicture':
|
|||
Break;
|
||||
}
|
||||
}
|
||||
include ("./inc/footer.php");
|
||||
include ("../../includes/footer.php");
|
||||
?>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
include ("./inc/config.php");
|
||||
include ("./inc/config_db.php");
|
||||
include ("./inc/funktion_lang.php");
|
||||
include ("../../includes/config.php");
|
||||
include ("../../includes/config_db.php");
|
||||
include ("../../includes/funktion_lang.php");
|
||||
|
||||
include ("./inc/funktion_user.php");
|
||||
include ("./inc/funktionen.php");
|
||||
include ("./inc/funktion_schichtplan_beamer.php");
|
||||
include ("../../includes/funktion_user.php");
|
||||
include ("../../includes/funktionen.php");
|
||||
include ("../../includes/funktion_schichtplan_beamer.php");
|
||||
|
||||
$Time = time()+3600+3600;
|
||||
//$Time = 1104241344;
|
||||
|
@ -14,7 +14,7 @@ $Time = time()+3600+3600;
|
|||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Schichtpläne für Beamer</TITLE>
|
||||
<!--<link rel=stylesheet type="text/css" href="./inc/css/style1.css">-->
|
||||
<!--<link rel=stylesheet type="text/css" href="/css/style1.css">-->
|
||||
<meta http-equiv="refresh" content="30; URL=<?PHP echo substr($url, 0, strlen($url)-1). $_SERVER['PHP_SELF']?>">
|
||||
</HEAD>
|
||||
<BODY>
|
||||
|
|
Loading…
Reference in New Issue