bug 586230

This commit is contained in:
Marc Delisle
2002-07-25 16:28:06 +00:00
parent ef522db09c
commit 67512f238f
2 changed files with 7 additions and 1 deletions

View File

@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-25 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, clarify about mysql extensions
* tbl_properties_options.php3, tbl_properties_table_info.php3:
bug 586230, thanks to Lo<4C>c
* common.lib.php3: fix bad variable name
2002-07-25 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* coding standard: common.lib.php3, config.inc.php3, Documentation.html,
header.inc.php3, sqlparser.data.php3, sqlparser.lib.php3,

View File

@@ -65,7 +65,7 @@ if (PMA_MYSQL_INT_VERSION >= 32322) {
<input type="hidden" name="table" value="<?php echo $table; ?>" />
<?php echo $strTableComments; ?>&nbsp;:&nbsp;
<input type="hidden" name="prev_comment" value="<?php echo urlencode($show_comment); ?>" />&nbsp;
<input type="text" name="comment" maxlength="60" size="30" value="<?php echo str_replace('"', '&quot;', $show_comment); ?>" class="textfield" style="vertical-align: middle" onfocus="this.select()" />&nbsp;
<input type="text" name="comment" maxlength="60" size="30" value="<?php echo htmlspecialchars($show_comment); ?>" class="textfield" style="vertical-align: middle" onfocus="this.select()" />&nbsp;
<input type="submit" name="submitcomment" value="<?php echo $strGo; ?>" style="vertical-align: middle" />
</form>
</li>