max table and field sizes are 64 characters
This commit is contained in:
@@ -6,6 +6,9 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
|
* db_details.php3, line 708; tbl_properties.inc.php3, line 71: maximum
|
||||||
|
table and field size is 64 characters. Suggested by
|
||||||
|
Marc Weidner <gurmbot at users.sourceforge.net>.
|
||||||
* db_details.php3:
|
* db_details.php3:
|
||||||
- invalid xhtml statements;
|
- invalid xhtml statements;
|
||||||
- extend "check/uncheck all tables" feature to js disabled browsers.
|
- extend "check/uncheck all tables" feature to js disabled browsers.
|
||||||
|
@@ -705,7 +705,7 @@ if ($num_tables > 0) {
|
|||||||
<?php
|
<?php
|
||||||
echo ' ' . $strCreateNewTable . htmlspecialchars($db) . ' :<br />' . "\n";
|
echo ' ' . $strCreateNewTable . htmlspecialchars($db) . ' :<br />' . "\n";
|
||||||
echo ' ' . $strName . ' : ' . "\n";
|
echo ' ' . $strName . ' : ' . "\n";
|
||||||
echo ' ' . '<input type="text" name="table" />' . "\n";
|
echo ' ' . '<input type="text" name="table" maxlength="64" />' . "\n";
|
||||||
// echo ' ' . $strNumberIndexes. ' : ' . "\n";
|
// echo ' ' . $strNumberIndexes. ' : ' . "\n";
|
||||||
// echo ' ' . '<input type="text" name="num_indexes" size="2" />' . "\n";
|
// echo ' ' . '<input type="text" name="num_indexes" size="2" />' . "\n";
|
||||||
echo ' ' . '<br />' . "\n";
|
echo ' ' . '<br />' . "\n";
|
||||||
|
@@ -68,7 +68,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
|
|||||||
}
|
}
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<input type="text" name="field_name[]" size="10" value="<?php if (isset($row) && isset($row['Field'])) echo str_replace('"', '"', $row['Field']); ?>" />
|
<input type="text" name="field_name[]" size="10" maxlength="64" value="<?php if (isset($row) && isset($row['Field'])) echo str_replace('"', '"', $row['Field']); ?>" />
|
||||||
</td>
|
</td>
|
||||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||||
<select name="field_type[]">
|
<select name="field_type[]">
|
||||||
|
Reference in New Issue
Block a user