Code Duplication    Length = 9-9 lines in 2 locations

includes/geo/geoip.inc 2 locations

@@ 668-676 (lines=9) @@
665
}
666
} // function_exists
667
668
if( !function_exists( '_get_org_v6' ) ) {
669
function _get_org_v6($gi,$ipnum){
670
  $seek_org = _geoip_seek_country_v6($gi,$ipnum);
671
  if ($seek_org == $gi->databaseSegments) {
672
    return NULL;
673
  }
674
  return _common_get_org($gi, $seek_org);
675
}
676
} // function_exists
677
678
if( !function_exists( '_get_org' ) ) {
679
function _get_org($gi,$ipnum){
@@ 678-686 (lines=9) @@
675
}
676
} // function_exists
677
678
if( !function_exists( '_get_org' ) ) {
679
function _get_org($gi,$ipnum){
680
  $seek_org = _geoip_seek_country($gi,$ipnum);
681
  if ($seek_org == $gi->databaseSegments) {
682
    return NULL;
683
  }
684
  return _common_get_org($gi, $seek_org);
685
}
686
} // function_exists
687
688
689