Fix indentation

This commit is contained in:
Madhura Jayaratne 2012-07-11 13:52:21 +05:30
parent b4f7c5d93c
commit e97a4978e5

View File

@ -909,9 +909,9 @@ function PMA_getColumnEnumValues($column, $extracted_columnspec)
// Removes automatic MySQL escape format
$val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
$column['values'][] = array(
'plain' => $val,
'html' => htmlspecialchars($val),
);
'plain' => $val,
'html' => htmlspecialchars($val),
);
}
return $column['values'];
}