From: Michael Vogel Date: Sun, 8 Nov 2015 14:17:08 +0000 (+0100) Subject: Fixed an undefined variable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c2beab0d5617d41bdcbfa925eee3c8044e4d3d74;p=friendica.git Fixed an undefined variable --- 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'];