Fix a bunch of PHP Errors regarding various variable issues non existent vars, cleaned up client export documentation and export assets etc

This commit is contained in:
johnnyq
2021-12-09 15:26:21 -05:00
parent d78a24f3a5
commit a5a8fbc319
7 changed files with 17 additions and 30 deletions

View File

@@ -93,7 +93,7 @@
<select class="form-control select2" name="country">
<option value="">- Country -</option>
<?php foreach($countries_array as $country_name) { ?>
<option <?php if($config_default_country == $country_name){ echo "selected"; } ?> ><?php echo $country_name; ?></option>
<option <?php if($session_company_country == $country_name){ echo "selected"; } ?> ><?php echo $country_name; ?></option>
<?php } ?>
</select>
</div>