Lowercase ty in QTY, fixed issue in setup where it would not take the selected currency type

This commit is contained in:
johnny@pittpc.com
2021-03-27 15:52:00 -04:00
parent cc3a133d16
commit cd2ea38c5b
4 changed files with 8 additions and 8 deletions

View File

@@ -591,7 +591,7 @@ if(isset($_POST['add_company_settings'])){
<select class="form-control select2" name="currency_code" required>
<option value="">- Currency -</option>
<?php foreach($currencies_array as $currency_code => $currency_name) { ?>
<option><?php echo "$currency_code - $currency_name"; ?></option>
<option value="<?php echo $currency_code; ?>"><?php echo "$currency_code - $currency_name"; ?></option>
<?php } ?>
</select>
</div>
@@ -660,4 +660,4 @@ if(isset($_POST['add_company_settings'])){
</body>
</html>
</html>