bug 438319

This commit is contained in:
Marc Delisle
2001-07-05 01:14:34 +00:00
parent 93232ead8a
commit 365fa1f32c
2 changed files with 13 additions and 9 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-07-04 Marc Delisle <lem9@users.sourceforge.net>
* bug #438319 (IE 5.5 and "Add a new user"): user_details.php3,
thanks to Lo<4C>c Chapeaux <lolo@phpheaven.net>
2001-07-04 Olivier M<>ller <om@omnis.ch> [uid23515] 2001-07-04 Olivier M<>ller <om@omnis.ch> [uid23515]
* set version to 2.2.0rc1 * set version to 2.2.0rc1
* removed anything about "unofficial" from the pages * removed anything about "unofficial" from the pages

View File

@@ -104,7 +104,7 @@ function normal_operations()
<li><a href="<?php echo "$self?server=$server&lang=$lang&db=mysql&table=user&mode=reload"; ?>"><?php echo $strReloadMySQL; ?></a> <?php print show_docu("manual_Reference.html#FLUSH"); ?></li> <li><a href="<?php echo "$self?server=$server&lang=$lang&db=mysql&table=user&mode=reload"; ?>"><?php echo $strReloadMySQL; ?></a> <?php print show_docu("manual_Reference.html#FLUSH"); ?></li>
<li><form name=userForm method="POST" action="<?php echo $self; ?>"><?php echo $strCheckDbPriv; ?> <li><form name=userForm1 method="POST" action="<?php echo $self; ?>"><?php echo $strCheckDbPriv; ?>
<table with="100%"><tr> <table with="100%"><tr>
<td><?php echo $strDatabase; ?>:&nbsp;<select name="db"> <td><?php echo $strDatabase; ?>:&nbsp;<select name="db">
<?php <?php
@@ -122,7 +122,7 @@ function normal_operations()
</form> </form>
</li> </li>
<li><form name=userForm onsubmit ="return false"><?php echo $strAddUser; ?> <li><form name=userForm2 onsubmit ="return false"><?php echo $strAddUser; ?>
<table> <table>
<tr> <tr>
<td><input type="radio" name="anyhost"> <td><input type="radio" name="anyhost">
@@ -146,8 +146,8 @@ function normal_operations()
<td><input type="radio" name="nopass"><?php echo $strNoPassword; ?></td></tr> <td><input type="radio" name="nopass"><?php echo $strNoPassword; ?></td></tr>
<tr><td><br><?php echo $strPrivileges; ?>:<br></td></tr> <tr><td><br><?php echo $strPrivileges; ?>:<br></td></tr>
</table> </table>
<?php table_privileges("userForm") ?> <?php table_privileges("userForm2") ?>
<input type="button" value="<?php echo $strGo; ?>" onclick="addUser(document.userForm)"></p> <input type="button" value="<?php echo $strGo; ?>" onclick="addUser(document.userForm2)"></p>
</form> </form>
</li> </li>
</ul> </ul>
@@ -266,12 +266,12 @@ function grant_operations()
<li><a href="<?php echo "$self?server=$server&lang=$lang&db=mysql&table=user"; ?>"><?php echo $strBack; ?></a></li> <li><a href="<?php echo "$self?server=$server&lang=$lang&db=mysql&table=user"; ?>"><?php echo $strBack; ?></a></li>
<li><form name=userForm onsubmit ="return false"><?php echo $strAddPriv; ?> <li><form name=userForm3 onsubmit ="return false"><?php echo $strAddPriv; ?>
<table with="100%"><tr> <table with="100%"><tr>
<td><input type="radio" name="anydb"<?php echo ($dbgrant) ? "": " checked"; ?>><?php echo $strAnyDatabase; ?></td> <td><input type="radio" name="anydb"<?php echo ($dbgrant) ? "": " checked"; ?>><?php echo $strAnyDatabase; ?></td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td><input type="radio" name="anydb"<?php echo ($dbgrant) ? " checked":""; ?>><?php echo $strDatabase; ?>:&nbsp; <td><input type="radio" name="anydb"<?php echo ($dbgrant) ? " checked":""; ?>><?php echo $strDatabase; ?>:&nbsp;
<select name="database" onchange="javascript:change(userForm.database, 'dbgrant')"> <select name="database" onchange="javascript:change(userForm3.database, 'dbgrant')">
<?php <?php
if (!isset($dbgrant)) echo "<option selected></option>"; if (!isset($dbgrant)) echo "<option selected></option>";
$result = mysql_query("SHOW DATABASES"); $result = mysql_query("SHOW DATABASES");
@@ -288,7 +288,7 @@ function grant_operations()
<td><input type="radio" name="anytable"<?php echo ($tablegrant) ? "":" checked"; ?>><?php echo $strAnyTable; ?></td> <td><input type="radio" name="anytable"<?php echo ($tablegrant) ? "":" checked"; ?>><?php echo $strAnyTable; ?></td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td><input type="radio" name="anytable"<?php echo ($tablegrant) ? " checked":""; ?>><?php echo $strTable; ?>:&nbsp; <td><input type="radio" name="anytable"<?php echo ($tablegrant) ? " checked":""; ?>><?php echo $strTable; ?>:&nbsp;
<select name="table" onchange="javascript:change(userForm.table, 'tablegrant')" <select name="table" onchange="javascript:change(userForm3.table, 'tablegrant')"
> >
<?php <?php
if (isset($dbgrant)) { if (isset($dbgrant)) {
@@ -325,8 +325,8 @@ function grant_operations()
</tr></table> </tr></table>
<table><tr><td><br><?php echo $strPrivileges; ?>:<br></td></tr></table> <table><tr><td><br><?php echo $strPrivileges; ?>:<br></td></tr></table>
<?php table_privileges("userForm") ?> <?php table_privileges("userForm3") ?>
<input type="button" value="<?php echo $strGo; ?>" onclick="addGrant(userForm)"></p> <input type="button" value="<?php echo $strGo; ?>" onclick="addGrant(userForm3)"></p>
</form> </form>
</li> </li>
</ul> </ul>