Code Duplication    Length = 5-5 lines in 2 locations

geodirectory-admin/admin_functions.php 2 locations

@@ 780-784 (lines=5) @@
777
778
        if (isset($value['type']) && $value['type'] == 'checkbox') :
779
780
            if (isset($value['id']) && isset($_POST[$value['id']])) {
781
                update_option($value['id'], $_POST[$value['id']]);
782
            } else {
783
                update_option($value['id'], 0);
784
            }
785
786
        elseif (isset($value['type']) && $value['type'] == 'image_width') :
787
@@ 898-902 (lines=5) @@
895
                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
896
            }
897
898
            if (isset($value['id']) && isset($_POST[$value['id']])) {
899
                update_option($value['id'], $_POST[$value['id']]);
900
            } else {
901
                delete_option($value['id']);
902
            }
903
904
        endif;
905
    }