|
@@ -53,7 +53,11 @@ class Core
|
|
|
|
|
|
$this->log($notify, $send);
|
|
|
|
|
|
- Dever::load($notify, $send);
|
|
|
+ if (strstr($notify, 'http://') || strstr($notify, 'https://')) {
|
|
|
+ Dever::curl($notify, $send);
|
|
|
+ } else {
|
|
|
+ Dever::load($notify, $send);
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
$this->log('支付失败', '错误的订单id:' . $order_id);
|