diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-11-20 20:47:30 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-11-20 20:47:30 +0000 |
commit | 9972a16e199d53ed55af97fb5c64b8c3ff41d36c (patch) | |
tree | 0488a13074cf6d996102e2c0e7efd0e35079cd45 /www-ssl | |
parent | ff7cb3f40c6538ecebdcba0e8ef3ebea36b77fcd (diff) |
bugfix
git-svn-id: svn://svn.cccv.de/engel-system@166 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl')
-rwxr-xr-x | www-ssl/admin/room.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www-ssl/admin/room.php b/www-ssl/admin/room.php index ca381713..a1502f96 100755 --- a/www-ssl/admin/room.php +++ b/www-ssl/admin/room.php @@ -57,10 +57,10 @@ case 'new': { if( (mysql_field_name($Erg, $Uj) == "show") || (mysql_field_name($Erg, $Uj) == "FromPentabarf") ) { - echo "<tr><td>show</td>". + echo "<tr><td>". mysql_field_name($Erg, $Uj). "</td>". "<td>". - "<input type=\"radio\" name=\"e". mysql_field_name($Erg, $Uj). "\" value=\"Y\">Yes". - "<input type=\"radio\" name=\"e". mysql_field_name($Erg, $Uj). "\" value=\"N\">No". + "<input type=\"radio\" name=\"". mysql_field_name($Erg, $Uj). "\" value=\"Y\">Yes". + "<input type=\"radio\" name=\"". mysql_field_name($Erg, $Uj). "\" value=\"N\">No". "</td></tr>\n"; } else |