From c2beab0d5617d41bdcbfa925eee3c8044e4d3d74 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 8 Nov 2015 15:17:08 +0100 Subject: [PATCH] Fixed an undefined variable --- mod/dirfind.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index cf47f7e885..6a4c7f1ced 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -51,7 +51,7 @@ function dirfind_content(&$a, $prefix = "") { if ($discover_user) { $j = new stdClass(); - $j->total = $count[0]["total"]; + $j->total = 1; $j->items_page = 1; $j->page = $a->pager['page'];