diff options
-rwxr-xr-x | default-conf/www-ssl/inc/config_db.php | 2 | ||||
-rwxr-xr-x | includes/crypt.php | 2 | ||||
-rwxr-xr-x | includes/error_handler.php | 2 | ||||
-rwxr-xr-x | includes/footer.php | 6 | ||||
-rw-r--r-- | includes/funktion_SendMessenges.php | 2 | ||||
-rwxr-xr-x | includes/funktion_modem.php | 2 | ||||
-rwxr-xr-x | includes/funktion_schichtplan_aray.php | 2 | ||||
-rwxr-xr-x | includes/header.php | 20 | ||||
-rwxr-xr-x | includes/login_eingabefeld.php | 2 | ||||
-rwxr-xr-x | includes/menu.php | 2 |
10 files changed, 21 insertions, 21 deletions
diff --git a/default-conf/www-ssl/inc/config_db.php b/default-conf/www-ssl/inc/config_db.php index 19ba57d2..d959be90 100755 --- a/default-conf/www-ssl/inc/config_db.php +++ b/default-conf/www-ssl/inc/config_db.php @@ -1,5 +1,5 @@ <?php -include("./inc/funktion_db.php"); +include("funktion_db.php"); $con = mysql_connect("localhost", "root", "changeme") or die ("connection failed"); $sel = mysql_select_db("tabel") or die (mysql_error()); diff --git a/includes/crypt.php b/includes/crypt.php index 474cd62c..9707e719 100755 --- a/includes/crypt.php +++ b/includes/crypt.php @@ -2,7 +2,7 @@ function PassCrypt($passwort) { -include "./config.php"; +include "config.php"; switch ($crypt_system) { case "crypt": diff --git a/includes/error_handler.php b/includes/error_handler.php index 062df488..00a76058 100755 --- a/includes/error_handler.php +++ b/includes/error_handler.php @@ -1,6 +1,6 @@ <?php - require_once("./funktion_jabber.php"); + require_once("funktion_jabber.php"); // global array for collected error_messages $error_messages = array(); diff --git a/includes/footer.php b/includes/footer.php index d61545c0..47dbfce9 100755 --- a/includes/footer.php +++ b/includes/footer.php @@ -30,7 +30,7 @@ if( $Page["ShowTabel"]=="Y" ) <!-- anfang des menue parts //--> <?PHP -if( $_SESSION['Menu'] =="R") include("./menu.php"); +if( $_SESSION['Menu'] =="R") include("menu.php"); ?> </td> @@ -45,8 +45,8 @@ if( $_SESSION['Menu'] =="R") include("./menu.php"); <td colspan="2"> <h5 align="center"> © copyleft - <a href="mailto:erzengel@lists.ccc.de">Kontakt</a> <?PHP - include( "./funktion_counter.php"); - include( "./funktion_flag.php"); + include( "funktion_counter.php"); + include( "funktion_flag.php"); ?></h5> </td> </tr> diff --git a/includes/funktion_SendMessenges.php b/includes/funktion_SendMessenges.php index 893c6600..d71e4804 100644 --- a/includes/funktion_SendMessenges.php +++ b/includes/funktion_SendMessenges.php @@ -3,7 +3,7 @@ function SendData($Data)
{
- include("./config_MessegeServer.php");
+ include("config_MessegeServer.php");
// Create a UDP socket
$sock = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
//send packed
diff --git a/includes/funktion_modem.php b/includes/funktion_modem.php index ffc5b9c2..3a74e0f8 100755 --- a/includes/funktion_modem.php +++ b/includes/funktion_modem.php @@ -1,5 +1,5 @@ <?PHP -include "./config_modem.php"; +include "config_modem.php"; function DialNumber( $Number ) { diff --git a/includes/funktion_schichtplan_aray.php b/includes/funktion_schichtplan_aray.php index 3189f73f..2f7f4b36 100755 --- a/includes/funktion_schichtplan_aray.php +++ b/includes/funktion_schichtplan_aray.php @@ -34,5 +34,5 @@ $TID2Name[ mysql_result($Erg, $i, "TID") ] = mysql_result($Erg, $i, "Name"); } -include ("./funktion_schichtplan_Tage.php"); +include ("funktion_schichtplan_Tage.php"); ?> diff --git a/includes/header.php b/includes/header.php index 4a62f630..06201dc3 100755 --- a/includes/header.php +++ b/includes/header.php @@ -1,17 +1,17 @@ <?PHP ini_set( "session.gc_maxlifetime", "65535"); -include ("./config.php"); -include ("./error_handler.php"); -include ("./config_db.php"); -include ("./funktion_lang.php"); -include ("./funktion_faq.php"); //für noAnswer() im menu -include ("./funktion_menu.php"); -include ("./funktion_user.php"); +include ("config.php"); +include ("error_handler.php"); +include ("config_db.php"); +include ("funktion_lang.php"); +include ("funktion_faq.php"); //für noAnswer() im menu +include ("funktion_menu.php"); +include ("funktion_user.php"); if( !isset($_SESSION)) session_start(); -include ("./secure.php"); +include ("secure.php"); if( !isset($_SESSION['IP'])) $_SESSION['IP'] = $_SERVER['REMOTE_ADDR']; @@ -22,7 +22,7 @@ if (IsSet($_SESSION['UID']) and ($_SESSION['IP'] <> $_SERVER['REMOTE_ADDR'])) header("Location: $url". substr($ENGEL_ROOT,1) ); } -include ("./UserCVS.php"); +include ("UserCVS.php"); //UPdate LASTlogin @@ -116,7 +116,7 @@ if( isset($_SESSION['CVS']["nonpublic/messages.php"])) <?PHP //ausgaeb Menu if( !isset($_SESSION['Menu'])) $_SESSION['Menu'] = "L"; -if( $_SESSION['Menu'] =="L") include("./menu.php"); +if( $_SESSION['Menu'] =="L") include("menu.php"); ?> <td valign="top" align="center"> diff --git a/includes/login_eingabefeld.php b/includes/login_eingabefeld.php index ff26f65f..437e030d 100755 --- a/includes/login_eingabefeld.php +++ b/includes/login_eingabefeld.php @@ -1,7 +1,7 @@ <form action="<?PHP -include ("./config.php"); +include ("config.php"); echo substr($url, 0, strlen($url)-1). $ENGEL_ROOT ?>nonpublic/index.php" method="post"> <table> diff --git a/includes/menu.php b/includes/menu.php index dcb80b84..6133b856 100755 --- a/includes/menu.php +++ b/includes/menu.php @@ -51,7 +51,7 @@ if( isset($_SESSION['UID'])) <table align="center" class="border" cellpadding="3" cellspacing="1"> <tr> <td width="160" class="menu"> - <?php include("./funktion_activeUser.php"); ?> + <?php include("funktion_activeUser.php"); ?> </td> </tr> </table> |