Code Duplication    Length = 5-5 lines in 2 locations

geodirectory-admin/admin_functions.php 2 locations

@@ 459-463 (lines=5) @@
456
457
        if (isset($value['type']) && $value['type'] == 'checkbox') :
458
459
            if (isset($value['id']) && isset($_POST[$value['id']])) {
460
                update_option($value['id'], $_POST[$value['id']]);
461
            } else {
462
                update_option($value['id'], 0);
463
            }
464
465
        elseif (isset($value['type']) && $value['type'] == 'image_width') :
466
@@ 577-581 (lines=5) @@
574
                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
575
            }
576
577
            if (isset($value['id']) && isset($_POST[$value['id']])) {
578
                update_option($value['id'], $_POST[$value['id']]);
579
            } else {
580
                delete_option($value['id']);
581
            }
582
583
        endif;
584
    }