Sfoglia il codice sorgente

Make Titles clickable

Kiina 9 anni fa
parent
commit
d5aa7dee27
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      functions.php

+ 2 - 2
functions.php

@@ -427,7 +427,7 @@ function resolveEmbyItem($address, $token, $item) {
 	}
 	}
 	
 	
 	// Assemble Item And Cache Into Array 
 	// Assemble Item And Cache Into Array 
-	return '<div class="item"><a href="'.$address.'/web/itemdetails.html?id='.$item['Id'].'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.'" src="ajax.php?a=emby-image&img='.$imageId.'&height='.$height.'&width='.$width.'"></a><div class="carousel-caption" style="'.$style.'"><h4>'.$title.'</h4><small><em>'.$itemDetails['Overview'].'</em></small></div></div>';
+	return '<div class="item"><a href="'.$address.'/web/itemdetails.html?id='.$item['Id'].'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.'" src="ajax.php?a=emby-image&img='.$imageId.'&height='.$height.'&width='.$width.'"></a><div class="carousel-caption" style="'.$style.'"><a href="'.$address.'/web/itemdetails.html?id='.$item['Id'].'" target="_blank"><h4>'.$title.'</h4></a><small><em>'.$itemDetails['Overview'].'</em></small></div></div>';
 }
 }
 
 
 // Format item from Plex for Carousel
 // Format item from Plex for Carousel
@@ -466,7 +466,7 @@ function resolvePlexItem($server, $token, $item) {
 	}
 	}
 	
 	
 	// Assemble Item And Cache Into Array 
 	// Assemble Item And Cache Into Array 
-	return '<div class="item"><a href="'.$address.'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.'" src="ajax.php?a=plex-image&img='.$item['thumb'].'&height='.$height.'&width='.$width.'"></a><div class="carousel-caption" style="'.$style.'"><h4>'.$title.'</h4><small><em>'.$summary.'</em></small></div></div>';
+	return '<div class="item"><a href="'.$address.'" target="_blank"><img alt="'.$item['Name'].'" class="'.$image.'" src="ajax.php?a=plex-image&img='.$item['thumb'].'&height='.$height.'&width='.$width.'"></a><div class="carousel-caption" style="'.$style.'"><a href="'.$address.'" target="_blank"><h4>'.$title.'</h4></a><small><em>'.$summary.'</em></small></div></div>';
 }
 }
 
 
 // Create Carousel
 // Create Carousel