Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 67836

Fix for undefined $count variable

$
0
0

Replies: 0

There are two occurrences of

for ($i=0;$i<$count_posts;$i++)

Each of them can be altered like this

for ($i=0,$count=0;$i<$count_posts;$i++)

in order to get rid of the undefined variable $count notices in debug mode.


Viewing all articles
Browse latest Browse all 67836

Trending Articles