Closed glenstewart closed 1 year ago
From: phprecipebook\src\View\Helper\FractionHelper.php
public function toFraction($value) {
AS-IS: if ($this->fraction != "") {
FIXED: if (($this->fraction != "") && ($this->fraction != '0')) {
Checked in fix.
From: phprecipebook\src\View\Helper\FractionHelper.php
AS-IS: if ($this->fraction != "") {
FIXED: if (($this->fraction != "") && ($this->fraction != '0')) {