Fix country not posting under company settings

This commit is contained in:
johnny@pittpc.com 2020-03-30 20:11:47 -04:00
parent 1c98e61cf8
commit 22f827a5c8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-flag"></i></span>
</div>
<select class="form-control select2" name="country">
<select class="form-control select2" name="config_company_country">
<option value="">- Country -</option>
<?php foreach($countries_array as $country_name) { ?>
<option <?php if($config_company_country == $country_name) { echo "selected"; } ?>><?php echo $country_name; ?></option>