1 Warning: Division by zero in /usr/local/apache/common-local/php-1.20wmf1/extensions/ParserFunctions/Expr.php on line 423
case EXPR_MOD:
if ( count( $stack ) < 2 ) {
throw new ExprError( 'missing_operand', $this->names[$op] );
}
$right = array_pop( $stack );
$left = array_pop( $stack );
if ( $right == 0 ) {
throw new ExprError( 'division_by_zero', $this->names[$op] );
}
$stack[] = $left % $right;
break;423 is the % line
Version: unspecified
Severity: minor