From c6859853ed9802d7d4f217bcb7eda0b79ce12475 Mon Sep 17 00:00:00 2001
From: SovereigntyIsNotFreedom
Date: Fri, 11 Apr 2025 09:12:36 +0100
Subject: [PATCH] issue #49: link with status 0.0 now removes the whole line
and add fixes with issues for php8.4
---
www/header.php | 5 -----
1 file changed, 5 deletions(-)
diff --git a/www/header.php b/www/header.php
index 5ecae99..ae4041e 100644
--- a/www/header.php
+++ b/www/header.php
@@ -79,11 +79,6 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
echo $urllink . '"> '; // display the link
echo $data[2] . '
'; // display the link title and close the a href and first cell, open the second cell
echo $data[5] . " | "; // OPTIONAL: display the description column
- if ($data[7] == 0.0){
- continue;
- }else{
- echo $data[7] . " | "; // display the score and close the second cell, open the third cell
- }
echo $data[7] . " | "; // display the score and close the second cell, open the third cell
if($data[6] == "YES"){
|