Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
globalcitizen committed Mar 25, 2024
1 parent ef7dae8 commit b4f2d87
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions php-iban.php
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ function _iban_get_info($iban,$code) {

# Get information from the IBAN registry by country / code combination
function _iban_country_get_info($country,$code) {
if(is_null($country) || is_null($code)) { return false; }
_iban_load_registry();
global $_iban_registry;
$country = strtoupper($country);
Expand Down

0 comments on commit b4f2d87

Please sign in to comment.