From ae9572d2fac79fdbcd04243ac45366fb3623e513 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 26 Apr 2002 10:55:21 +0000 Subject: [PATCH] parse error --- tbl_properties.inc.php3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tbl_properties.inc.php3 b/tbl_properties.inc.php3 index ad7da1c09..b0ff416f6 100755 --- a/tbl_properties.inc.php3 +++ b/tbl_properties.inc.php3 @@ -106,7 +106,7 @@ for ($i = 0 ; $i < $num_fields; $i++) { if (strtoupper($type) == strtoupper($cfg['ColumnTypes'][$j])) { echo ' selected="selected"'; } - echo ">$cfg['ColumnTypes'][$j]\n"; + echo ">" . $cfg['ColumnTypes'][$j] . "\n"; } // end for ?> @@ -145,7 +145,7 @@ for ($i = 0 ; $i < $num_fields; $i++) { if (strtoupper($strAttribute) == strtoupper($cfg['AttributeTypes'][$j])) { echo ' selected="selected"'; } - echo ">$cfg['AttributeTypes'][$j]\n"; + echo ">" . $cfg['AttributeTypes'][$j] . "\n"; } ?>