1
0

2 Sitoutukset 703bfd5742 ... a5752f2456

Tekijä SHA1 Viesti Päivämäärä
  Xen a5752f2456 filter and link fix 1 vuosi sitten
  Xen 703bfd5742 filter and link fix 1 vuosi sitten
1 muutettua tiedostoa jossa 23 lisäystä ja 9 poistoa
  1. 23 9
      www/index.php

+ 23 - 9
www/index.php

@@ -115,15 +115,29 @@ function clean_str($str) {
 		$item_link = "article.php?loc=" . $loc . '&a=' . $item->get_permalink();
 		
 		$up_title = strtoupper($item_title);
-
-		preg_match_all('|(SPORTS|NFL|NFL|NBA|MLB|)|', $up_title, $matches);
-		if (!empty($matches)) {
-			// 🧒 👦 👨‍👦‍👦
-			echo '<p class="sports" style="font-size: 4px;">
-				⚽ 🏀 🏈 ⚾️ 🎾 🏐 🏉 🎱 🏆 🏟 ⛹️
-				<a href="' . $item_link . '">happened</a>
-				</p>'; 
-			continue;
+		// if (str_contains($up_title, "SPORTS") == true)
+		// { 
+		// 	// 🧒 👦 👨‍👦‍👦
+		// 	echo '<p class="sports" style="font-size: 4px;">
+		// 		⚽ 🏀 🏈 ⚾️ 🎾 🏐 🏉 🎱 🏆 🏟 ⛹️
+		// 		<a href="$item_link">happened</a>
+		// 		</p>'; 
+		// 	// Break out of 2nd-level loop.
+		// 	continue;
+		// }
+		for ($i = 0; $i < count($title_filters); $i++)
+		{
+			$testing = $title_filters[$i];
+			if (str_contains($up_title, $testing) == true)
+			{
+				// 🧒 👦 👨‍👦‍👦
+				echo '<p class="sports" style="font-size: 4px;">
+					⚽ 🏀 🏈 ⚾️ 🎾 🏐 🏉 🎱 🏆 🏟 ⛹️
+					<a href="$item_link">happened</a>
+					</p>'; 
+				// Break out of 2nd-level loop.
+				continue 2;
+			}
 		}
 		
 		$subheadlines = clean_str($item->get_description());