From 0296301fff6b1d7439f8c6a594de082113d151d6 Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Mon, 11 Mar 2024 18:54:20 -0700 Subject: [PATCH] use the current domain --- inc/mod/pages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index f7c1ac47..f5ea284c 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -115,7 +115,7 @@ function mod_dashboard() { $latest = unserialize($_COOKIE['update']); } else { $ctx = stream_context_create(array('http' => array('timeout' => 5))); - if ($code = @file_get_contents('http://engine.vichan.net/version.txt', 0, $ctx)) { + if ($code = @file_get_contents('http://engine.vichan.info/version.txt', 0, $ctx)) { $ver = strtok($code, "\n"); if (preg_match('@^// v(\d+)\.(\d+)\.(\d+)\s*?$@', $ver, $matches)) {