Crash: division by zero
-
ON sitemap-core.php
method get_post_priority
I came across a $this->average that is a float, so the “do not divide by zero!” (if ( 0 === $this->average) does not work.
Fix :if ( 0 === $this->average || 0.0 === $this->average ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Crash: division by zero’ is closed to new replies.