' . "\n";
echo $index_td
@@ -353,7 +353,7 @@ while (list($key, $table) = each($the_tables)) {
*
* staybyte - 9 June 2001
*/
- if ($cfgShowStats) {
+ if ($cfg['ShowStats']) {
$nonisam = FALSE;
if (isset($showtable['Type']) && !eregi('ISAM|HEAP', $showtable['Type'])) {
$nonisam = TRUE;
@@ -391,24 +391,24 @@ while (list($key, $table) = each($the_tables)) {
-
+
|
|
- |
- |
- |
+ |
+ |
+ |
- |
- |
- |
+ |
+ |
+ |
- |
- |
- |
+ |
+ |
+ |
- |
- |
- |
+ |
+ |
+ |
- |
- |
- |
+ |
+ |
+ |
-
+
|
|
@@ -455,7 +455,7 @@ while (list($key, $table) = each($the_tables)) {
@@ -477,7 +477,7 @@ while (list($key, $table) = each($the_tables)) {
@@ -489,7 +489,7 @@ while (list($key, $table) = each($the_tables)) {
0) {
- $bgcolor = ((++$i%2) ? $cfgBgcolorTwo : $cfgBgcolorOne);
+ $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
@@ -501,7 +501,7 @@ while (list($key, $table) = each($the_tables)) {
0 && $mergetable == FALSE) {
- $bgcolor = ((++$i%2) ? $cfgBgcolorTwo : $cfgBgcolorOne);
+ $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
echo "\n";
?>
@@ -513,7 +513,7 @@ while (list($key, $table) = each($the_tables)) {
@@ -533,7 +533,7 @@ while (list($key, $table) = each($the_tables)) {
= 32303 && $nonisam == FALSE)
- } // end if ($cfgShowStats)
+ } // end if ($cfg['ShowStats'])
echo "\n";
if ($multi_tables) {
diff --git a/tbl_properties.inc.php3 b/tbl_properties.inc.php3
index a147a26aa9..ad7da1c099 100755
--- a/tbl_properties.inc.php3
+++ b/tbl_properties.inc.php3
@@ -24,7 +24,7 @@ echo "\n";
$is_backup = ($action != 'tbl_create.php3' && $action != 'tbl_addfield.php3');
?>
-
+
|
' . PMA_showDocuShort('C/o/Column_types.html'); ?> |
@@ -53,7 +53,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
if (isset($fields_meta)) {
$row = $fields_meta[$i];
}
- $bgcolor = ($i % 2) ? $cfgBgcolorOne : $cfgBgcolorTwo;
+ $bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
?>
|
@@ -101,12 +101,12 @@ for ($i = 0 ; $i < $num_fields; $i++) {
}
} // end if else
- for ($j = 0; $j < count($cfgColumnTypes); $j++) {
- echo ' \n";
+ echo ">$cfg['ColumnTypes'][$j]\n";
} // end for
?>
@@ -140,12 +140,12 @@ for ($i = 0 ; $i < $num_fields; $i++) {
if ($zerofill) {
$strAttribute = 'UNSIGNED ZEROFILL';
}
- for ($j = 0;$j < count($cfgAttributeTypes); $j++) {
- echo ' \n";
+ echo ">$cfg['AttributeTypes'][$j]\n";
}
?>
| | |