From 3c65754a5e6851d1ec08f60f13ee27846f1f32e5 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 8 May 2022 00:24:58 +0200 Subject: Make 'Flagship' and 'Showcase' tags not be shown --- includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/functions.php') diff --git a/includes/functions.php b/includes/functions.php index 80d663f..bef7435 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -38,12 +38,12 @@ function build_dom(): string { if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/.build.id")) { $aa = trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/.build.id")); } else { - $aa = "-1"; + $aa = ""; } if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/.prjbuild.id")) { $ba = trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/.prjbuild.id")); } else { - $ba = "-1"; + $ba = ""; } return "$a.$b"; } -- cgit