Corrected syntax for checking if a checkbox is checked

This commit is contained in:
lorilee
2010-07-20 13:56:28 -07:00
parent 21ab3539b3
commit 6ed0cb3726

View File

@@ -362,7 +362,7 @@ if ($analyze) {
}
}
if ($_REQUEST['csv_col_names']) {
if (isset($_REQUEST['csv_col_names'])) {
$col_names = array_splice($rows, 0, 1);
$col_names = $col_names[0];
}