aboutsummaryrefslogtreecommitdiff
path: root/includes/functions.php
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-05-08 00:24:58 +0200
committerMinteck <contact@minteck.org>2022-05-08 00:24:58 +0200
commit3c65754a5e6851d1ec08f60f13ee27846f1f32e5 (patch)
tree2ffe2ab27907211cf4a318dcf9b6985e0001387e /includes/functions.php
parent48766d0eb788026db658fea1692cffda8fe71d26 (diff)
downloadember-3c65754a5e6851d1ec08f60f13ee27846f1f32e5.tar.gz
ember-3c65754a5e6851d1ec08f60f13ee27846f1f32e5.tar.bz2
ember-3c65754a5e6851d1ec08f60f13ee27846f1f32e5.zip
Make 'Flagship' and 'Showcase' tags not be shown
Diffstat (limited to 'includes/functions.php')
-rw-r--r--includes/functions.php4
1 files changed, 2 insertions, 2 deletions
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 href='https://ci.minteck.org/buildConfiguration/WebX_Stable/$aa' target='_blank' class='footer-link-mini'>$a</a>.<a href='https://ci.minteck.org/buildConfiguration/WebX_Projects/$ba' target='_blank' class='footer-link-mini'>$b</a>";
}