From 4d4308c46d4f7801c657cc79d2243e1a81831334 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 27 Oct 2023 22:29:56 +0200 Subject: Updated 32 files, added 279 files, deleted 3 files and renamed 14 files (automated) --- app/search.php | 91 ---------------------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 app/search.php (limited to 'app/search.php') diff --git a/app/search.php b/app/search.php deleted file mode 100644 index 2f5f164..0000000 --- a/app/search.php +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - search - - - - - - - - - - - -
-
-

Search results for ""

- 0; - }); - - uasort($albums, function ($a, $b) { - return strcmp($a["title"], $b["title"]); - }); - - uasort($albums, function ($a, $b) { - return strcmp($a["artist"], $b["artist"]); - }); - - uasort($albums, function ($a, $b) { - return getMatches($b) - getMatches($a); - }); - - $songs = array_filter($songs, function ($i) { - return getMatches($i) > 0; - }); - - uasort($songs, function ($a, $b) { - return getMatches($b) - getMatches($a); - }); - - ?> - - - -
- -

- - \ No newline at end of file -- cgit