@@ -74,10 +74,11 @@ discard block |
||
| 74 | 74 | $instance['animation'] = $new_instance['animation']; |
| 75 | 75 | $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : ''; |
| 76 | 76 | $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; |
| 77 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') |
|
| 78 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 79 | - else |
|
| 80 | - $instance['add_location_filter'] = '0'; |
|
| 77 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') { |
|
| 78 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); |
|
| 79 | + } else { |
|
| 80 | + $instance['add_location_filter'] = '0'; |
|
| 81 | + } |
|
| 81 | 82 | |
| 82 | 83 | return $instance; |
| 83 | 84 | } |
@@ -339,7 +340,10 @@ discard block |
||
| 339 | 340 | <label |
| 340 | 341 | for="<?php echo $this->get_field_id('show_featured_only'); ?>"><?php _e('Show only featured listings:', 'geodirectory'); ?>
|
| 341 | 342 | <input type="checkbox" id="<?php echo $this->get_field_id('show_featured_only'); ?>"
|
| 342 | - name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?>
|
|
| 343 | + name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) { |
|
| 344 | + echo 'checked="checked"'; |
|
| 345 | +} |
|
| 346 | +?> |
|
| 343 | 347 | value="1"/> |
| 344 | 348 | </label> |
| 345 | 349 | </p> |
@@ -347,7 +351,10 @@ discard block |
||
| 347 | 351 | <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
|
| 348 | 352 | <?php _e('Enable Location Filter:', 'geodirectory');?>
|
| 349 | 353 | <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
|
| 350 | - name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
|
|
| 354 | + name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) { |
|
| 355 | + echo 'checked="checked"'; |
|
| 356 | +} |
|
| 357 | +?> |
|
| 351 | 358 | value="1"/> |
| 352 | 359 | </label> |
| 353 | 360 | </p> |