Fixed css class on user select box

This commit is contained in:
Nate Jones 2014-02-26 01:52:57 +00:00
parent 45a3b04120
commit 036b77e8dc
1 changed files with 1 additions and 1 deletions

View File

@ -884,7 +884,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$sql .= "order by username asc ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
echo " <select name=\"user_uuid\" class='frm'>\n";
echo " <select name=\"user_uuid\" class='formfld' style='width: auto;'>\n";
echo " <option value=\"\"></option>\n";
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
foreach($result as $field) {