In need of staff over at roodesigns.net! ...Would you like to help?
“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.

  1. Open functions.inc.php
  2. Find the coding on line 469 that looks like this
  3. if($i%$break_location == 0 and $break_location)

  4. Change this line to
  5. if($break_location and $i%$break_location == 0)

  6. Save functions.inc.php

And that should do the trick :smile: