From 1f45fe7b70e6cb010a44755f643dd62f1002131e Mon Sep 17 00:00:00 2001 From: cookie Date: Tue, 29 Aug 2006 08:50:49 +0000 Subject: sonderfall: fuer feld show bei der ausgabe (auswahl Y/N) git-svn-id: svn://svn.cccv.de/engel-system@137 29ba0400-6e00-0410-a75a-ca02368028f8 --- www-ssl/admin/room.php | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) (limited to 'www-ssl') diff --git a/www-ssl/admin/room.php b/www-ssl/admin/room.php index 9b3dce1a..8f2f08f7 100755 --- a/www-ssl/admin/room.php +++ b/www-ssl/admin/room.php @@ -103,16 +103,27 @@ case 'change': for ($Uj = 1; $Uj < mysql_num_fields($ERG); $Uj++) { - //sonderfall fuer Default Engel - if( substr( mysql_field_name($ERG, $Uj), 0, 12) == "DEFAULT_EID_") - $FeldName = "Anzahl ". $EngelTypeID[substr( mysql_field_name($ERG, $Uj), 12)]; + if( mysql_field_name($ERG, $Uj) == "show") + { + echo "show". + "". + "Yes". + "No". + "\n"; + } else - $FeldName = mysql_field_name($ERG, $Uj); - - echo "$FeldName". - ""; - echo"\n"; + { + if( substr( mysql_field_name($ERG, $Uj), 0, 12) == "DEFAULT_EID_") + //sonderfall fuer Default Engel + $FeldName = "Anzahl ". $EngelTypeID[substr( mysql_field_name($ERG, $Uj), 12)]; + else + $FeldName = mysql_field_name($ERG, $Uj); + + echo "$FeldName". + "". + "\n"; + } } echo "\n"; echo "\n"; -- cgit v1.2.3-54-g00ecf