From ac012f40bba2e140492327e6d5851ce546c21e4f Mon Sep 17 00:00:00 2001 From: makotowu <13711521+makotowu@user.noreply.gitee.com> Date: Sat, 5 Oct 2024 08:36:57 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0js=E5=9C=B0=E5=9D=80=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0js=E5=9C=B0=E5=9D=80=EF=BC=8C=E8=AE=A9?= =?UTF-8?q?=E6=8F=92=E4=BB=B6=E5=8F=AF=E4=BB=A5=E6=AD=A3=E5=B8=B8=E4=BD=BF?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: makotowu <13711521+makotowu@user.noreply.gitee.com> --- tencentcloud-captcha/TencentCloudCaptchaActions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tencentcloud-captcha/TencentCloudCaptchaActions.php b/tencentcloud-captcha/TencentCloudCaptchaActions.php index 1ddd3f6..d865eb5 100644 --- a/tencentcloud-captcha/TencentCloudCaptchaActions.php +++ b/tencentcloud-captcha/TencentCloudCaptchaActions.php @@ -218,7 +218,7 @@ class TencentCloudCaptchaActions if (is_single() || is_paged()) { wp_register_script('codeVerify_front_user_script', TENCENT_WORDPRESS_CAPTCHA_JS_DIR . 'tencent_cloud_captcha_user.js', array('jquery'), '2.1', true); wp_enqueue_script('codeVerify_front_user_script'); - wp_register_script('TCaptcha', 'https://ssl.captcha.qq.com/TCaptcha.js', array('jquery'), '2.1', true); + wp_register_script('TCaptcha', 'https://turing.captcha.qcloud.com/TCaptcha.js', array('jquery'), '2.1', true); wp_enqueue_script('TCaptcha'); } } @@ -237,7 +237,7 @@ class TencentCloudCaptchaActions wp_enqueue_script('codeVerify_front_user_script'); wp_register_script('codeVerify_back_admin_script', TENCENT_WORDPRESS_CAPTCHA_JS_DIR . 'tencent_cloud_captcha_admin.js', array('jquery'), '2.1', true); wp_enqueue_script('codeVerify_back_admin_script'); - wp_register_script('TCaptcha', 'https://ssl.captcha.qq.com/TCaptcha.js', array('jquery'), '2.1', true); + wp_register_script('TCaptcha', 'https://turing.captcha.qcloud.com/TCaptcha.js', array('jquery'), '2.1', true); wp_enqueue_script('TCaptcha'); } -- Gitee