From 2c8b4ecb87fdef4357fc52d2e24522087af63d7c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Roland=20H=C3=A4der?=
Date: Thu, 23 Jun 2022 05:52:43 +0200
Subject: [PATCH] Changes: - changed more double-quotes to single - `include`
is not a function
---
convert/convert.php | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/convert/convert.php b/convert/convert.php
index 1385731c..54f7df4b 100644
--- a/convert/convert.php
+++ b/convert/convert.php
@@ -20,15 +20,15 @@ function convert_module() {}
function convert_content($app) {
-include("UnitConvertor.php");
+include 'UnitConvertor.php';
class TP_Converter extends UnitConvertor {
- function TP_Converter($lang = "en")
+ function TP_Converter($lang = 'en')
{
if ($lang != 'en' ) {
$dec_point = '.'; $thousand_sep = "'";
} else {
- $dec_point = '.'; $thousand_sep = ",";
+ $dec_point = '.'; $thousand_sep = ',';
}
$this->UnitConvertor($dec_point , $thousand_sep );
@@ -50,13 +50,13 @@ include("UnitConvertor.php");
// A baseunit was found now lets convert from -> $base_unit
- $cell ['value'] = $this->convert($value, $from_unit, $base_unit, $precision)." ".$base_unit;
- $cell ['class'] = ($base_unit == $from_unit || $base_unit == $to_unit) ? "framedred": "";
+ $cell ['value'] = $this->convert($value, $from_unit, $base_unit, $precision) . ' ' . $base_unit;
+ $cell ['class'] = ($base_unit == $from_unit || $base_unit == $to_unit) ? 'framedred' : '';
$cells[] = $cell;
// We now have the base unit and value now lets produce the table;
while (list($key,$val) = each($this->bases[$base_unit])) {
- $cell ['value'] = $this->convert($value, $from_unit, $val, $precision)." ".$val;
- $cell ['class'] = ($val == $from_unit || $val == $to_unit) ? "framedred": "";
+ $cell ['value'] = $this->convert($value, $from_unit, $val, $precision) . ' ' . $val;
+ $cell ['class'] = ($val == $from_unit || $val == $to_unit) ? 'framedred' : '';
$cells[] = $cell;
}
@@ -181,9 +181,9 @@ while (list($key,$val) = each($conversions)) {
if (isset($_POST['from_unit']) && isset($_POST['value'])) {
$_POST['value'] = $_POST['value'] + 0;
- $o .= ($conv->getTable($_POST['value'], $_POST['from_unit'], $_POST['to_unit'], 5))."
";
+ $o .= ($conv->getTable($_POST['value'], $_POST['from_unit'], $_POST['to_unit'], 5)) . '';
} else {
- $o .= "Select:
";
+ $o .= 'Select:
';
}
if (isset($_POST['value'])) {