From ae5b0a8c63979351028215b8fe8cdf4b0766c272 Mon Sep 17 00:00:00 2001
From: wanglizhong <wlz>
Date: 星期二, 24 六月 2025 15:27:20 +0800
Subject: [PATCH] fix:update sendsms php

---
 inc/thirdpay.asp |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/inc/thirdpay.asp b/inc/thirdpay.asp
index 2d40a68..a469e80 100644
--- a/inc/thirdpay.asp
+++ b/inc/thirdpay.asp
@@ -10,8 +10,10 @@
 rs.open sql,objConn,1,1
 If not rs.Eof then	 
       PayQRcodeURL = rs("PayQRcodeURL")
-      PayQRcodeURL = PayQRcodeURL&"?PayType="&PayType&"&PayMoney="&PayMoney&"&ServiceOrdID="&ServiceOrdID&"&DispatchOrdID="&DispatchOrdID
-      Response.Redirect PayQRcodeURL
+      if PayQRcodeURL<>"" Then
+         PayQRcodeURL = PayQRcodeURL&"?PayMoney="&PayMoney&"&ServiceOrdID="&ServiceOrdID&"&DispatchOrdID="&DispatchOrdID
+         Response.Redirect PayQRcodeURL
+      End If
 End If
 rs.close()
 End Function

--
Gitblit v1.9.1