Jelajahi Sumber

Quick and dirty fix for Google iCal Not working (#1233)

CauseFX 6 tahun lalu
induk
melakukan
ec93695ed6
1 mengubah file dengan 6 tambahan dan 1 penghapusan
  1. 6 1
      api/functions/homepage-connect-functions.php

+ 6 - 1
api/functions/homepage-connect-functions.php

@@ -1436,7 +1436,12 @@ function getCalenderRepeatUntil($value)
 {
 	$first = explode('UNTIL=', $value);
 	if (count($first) > 1) {
-		return $first[1];
+		if(strpos($first[1], ';') !== false){
+			$check = explode(';', $first[1]);
+			return $check[0];
+		}else{
+			return $first[1];
+		}
 	} else {
 		return false;
 	}