Subversion Repositories personal-webbase

Rev

Rev 8 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8 Rev 14
1
<?php
1
<?php
2
 
2
 
3
if (!defined('IBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
3
if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
4
 
4
 
5
$meldung = '';
5
$meldung = '';
6
 
6
 
7
$check = inetconn_ok();
7
$check = inetconn_ok();
8
 
8
 
9
if ($check)
9
if ($check)
10
{
10
{
11
  $meldung .= '<font color="#00BB00">Internetkonnektivit&auml;t OK</font>';
11
  $meldung .= '<font color="#00BB00">Internetkonnektivit&auml;t OK</font>';
12
}
12
}
13
else
13
else
14
{
14
{
15
  $meldung .= '<font color="#FF0000">Keine Internetkonnektivit&auml;t oder falsche <a href="'.$_SERVER['PHP_SELF'].'?seite=konfig&amp;modul='.urlencode($m2).'&amp;vonseite='.urlencode($seite).'&amp;vonmodul='.urlencode($modul).'">Konfigurationwerte</a>!</font>';
15
  $meldung .= '<font color="#FF0000">Keine Internetkonnektivit&auml;t oder falsche <a href="'.$_SERVER['PHP_SELF'].'?seite=konfig&amp;modul='.urlencode($m2).'&amp;vonseite='.urlencode($seite).'&amp;vonmodul='.urlencode($modul).'">Konfigurationwerte</a>!</font>';
16
}
16
}
17
 
17
 
18
?>
18
?>
19
 
19