“Division by zero” Cutenews Error
I’ve noticed that recently when installing cutenews, there’s an ugly little error that pops up on the comments page.
Warning: Division by zero in /home2/modvanit/public_html/sweet/cutenews/inc/functions.inc.php on line 469
So far, it’s not too much of an issue, the program can still function correctly. But, if you’re a perfectionist, here’s an easy fix.
- Open functions.inc.php
- Find the coding on line 469 that looks like this
- Change this line to
- Save functions.inc.php
if($i%$break_location == 0 and $break_location)
if($break_location and $i%$break_location == 0)
And that should do the trick 