if no options set

This commit is contained in:
Marc Delisle
2002-04-30 20:26:38 +00:00
parent 4d1da99409
commit 528f1d5855

View File

@@ -19,7 +19,9 @@ if (PMA_MYSQL_INT_VERSION >= 32303) {
$tmp_cnt = count($tmp);
for ($i = 0; $i < $tmp_cnt; $i++) {
$tmp1 = explode('=', $tmp[$i]);
$$tmp1[0] = $tmp1[1];
if (isset($tmp1[1])) {
$$tmp1[0] = $tmp1[1];
}
}
unset($tmp1);
unset($tmp);