codding standards

This commit is contained in:
Loïc Chapeaux
2002-04-27 07:46:58 +00:00
parent ac99bcb4c4
commit cb081dbbf7

View File

@@ -106,7 +106,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
if (strtoupper($type) == strtoupper($cfg['ColumnTypes'][$j])) { if (strtoupper($type) == strtoupper($cfg['ColumnTypes'][$j])) {
echo ' selected="selected"'; echo ' selected="selected"';
} }
echo ">" . $cfg['ColumnTypes'][$j] . "</option>\n"; echo '>' . $cfg['ColumnTypes'][$j] . '</option>' . "\n";
} // end for } // end for
?> ?>
</select> </select>
@@ -145,7 +145,7 @@ for ($i = 0 ; $i < $num_fields; $i++) {
if (strtoupper($strAttribute) == strtoupper($cfg['AttributeTypes'][$j])) { if (strtoupper($strAttribute) == strtoupper($cfg['AttributeTypes'][$j])) {
echo ' selected="selected"'; echo ' selected="selected"';
} }
echo ">" . $cfg['AttributeTypes'][$j] . "</option>\n"; echo '>' . $cfg['AttributeTypes'][$j] . '</option>' . "\n";
} }
?> ?>
</select> </select>