Procházet zdrojové kódy

fix callback is_url error

stanley-king před 4 roky
rodič
revize
b809d438e3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      helper/refill/RefillFactory.php

+ 1 - 1
helper/refill/RefillFactory.php

@@ -428,7 +428,7 @@ class RefillFactory
             return (substr($haystack, 0, $length) === $needle);
         };
 
-        return $checker("http://",$url) || $checker("https://",$url);
+        return $checker($url,"http://") || $checker($url,"https://");
     }
 
     public function notify_merchant($order_id)