Parcourir la source

Minor forgotten str_starts_with (#7991)

A couple of places, which have been forgotten when we moved to using `str_starts_with()` instead of `strpos()`.
Alexandre Alapetite il y a 6 mois
Parent
commit
92a73a2c4f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      lib/lib_rss.php

+ 2 - 2
lib/lib_rss.php

@@ -39,7 +39,7 @@ function join_path(...$path_parts): string {
 
 //<Auto-loading>
 function classAutoloader(string $class): void {
-	if (strpos($class, 'FreshRSS') === 0) {
+	if (str_starts_with($class, 'FreshRSS')) {
 		$components = explode('_', $class);
 		switch (count($components)) {
 			case 1:
@@ -52,7 +52,7 @@ function classAutoloader(string $class): void {
 				include APP_PATH . '/' . $components[2] . 's/' . $components[1] . $components[2] . '.php';
 				return;
 		}
-	} elseif (strpos($class, 'Minz') === 0) {
+	} elseif (str_starts_with($class, 'Minz')) {
 		include LIB_PATH . '/' . str_replace('_', '/', $class) . '.php';
 	} elseif (str_starts_with($class, 'SimplePie\\')) {
 		$prefix = 'SimplePie\\';