Skip to content

Commit

Permalink
FIX State dropdown is not working on User card Dolibarr#31198
Browse files Browse the repository at this point in the history
  • Loading branch information
fappels committed Sep 30, 2024
1 parent 4a86964 commit 8c85727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/ajax/ziptown.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
top_httphead('text/html');

$formcompany = new FormCompany($db);
print $formcompany->select_state(GETPOSTINT('selected', 1), GETPOSTINT('country_codeid', 1), GETPOSTINT('htmlname', 1), GETPOSTINT('morecss', 1));
print $formcompany->select_state(GETPOSTINT('selected', 1), GETPOSTINT('country_codeid', 1), GETPOST('htmlname', 'alpha', 1), GETPOST('morecss', 'alpha', 1));
}

$db->close();

0 comments on commit 8c85727

Please sign in to comment.