nazgul26 / PHPRecipebook

Cookbook and Meal planning software. Runs on PHP with MySQL/PostgreSQL.
62 stars 39 forks source link

6.1 displays 1.0 cups (etc) as "1 0" from function toFraction #109

Closed glenstewart closed 1 year ago

glenstewart commented 2 years ago

From: phprecipebook\src\View\Helper\FractionHelper.php

   public function toFraction($value) {

AS-IS: if ($this->fraction != "") {

FIXED: if (($this->fraction != "") && ($this->fraction != '0')) {

nazgul26 commented 1 year ago

Checked in fix.