Code Duplication    Length = 5-5 lines in 2 locations

geodirectory-admin/admin_functions.php 2 locations

@@ 760-764 (lines=5) @@
757
758
        if (isset($value['type']) && $value['type'] == 'checkbox') :
759
760
            if (isset($value['id']) && isset($_POST[$value['id']])) {
761
                update_option($value['id'], $_POST[$value['id']]);
762
            } else {
763
                update_option($value['id'], 0);
764
            }
765
766
        elseif (isset($value['type']) && $value['type'] == 'image_width') :
767
@@ 878-882 (lines=5) @@
875
                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
876
            }
877
878
            if (isset($value['id']) && isset($_POST[$value['id']])) {
879
                update_option($value['id'], $_POST[$value['id']]);
880
            } else {
881
                delete_option($value['id']);
882
            }
883
884
        endif;
885
    }