commit 80a7f47c9b809bcb1dd1ff478803b486aef76532 parent 8d235a621ff93b83759fa8adadeec6e450285b25 Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 13 Dec 2014 13:26:32 +0100 try new counting of ids Diffstat:
| M | core/backend/blog/posts.php | | | 6 | +----- |
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/core/backend/blog/posts.php b/core/backend/blog/posts.php @@ -28,11 +28,7 @@ #$resultat->close(); } if ($resultat = $connection->query("SELECT * FROM posts WHERE author LIKE '$author'")) { - while($daten = $resultat->fetch_object() ){ - $author_id_clean = $daten->id; - #var_dump($daten); - } - #$resultat->close(); + $author_id_clean = mysql_num_rows($resultat); } next_id_only(); next_id_category();