From: Hypolite Petovan Date: Sun, 9 Sep 2018 22:33:14 +0000 (-0400) Subject: Fix count being called on the wrong variable in mod/notes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e461474290f87a1e783100435183cf67217dce1b;p=friendica.git Fix count being called on the wrong variable in mod/notes --- diff --git a/mod/notes.php b/mod/notes.php index 68a870e9d6..01f283870e 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -70,8 +70,11 @@ function notes_content(App $a, $update = false) $count = 0; if (DBA::isResult($r)) { - $count = count($r); - $o .= conversation($a, DBA::toArray($r), 'notes', $update); + $notes = DBA::toArray($r); + + $count = count($notes); + + $o .= conversation($a, $notes, 'notes', $update); } $o .= alt_pager($a, $count);