mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 04:43:40 +00:00
Changes:
- added type-hint + intval() (@MrPetovan) - also changed `if (!$foo == '')` to `if ($foo != '')` - added some spaces for better readability
This commit is contained in:
parent
3ab46781b1
commit
02d4a560a1
2 changed files with 12 additions and 13 deletions
|
@ -52,7 +52,7 @@ function convert_content(App $a) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTable($value, $from_unit, $to_unit, $precision): string
|
public function getTable(int $value, $from_unit, $to_unit, $precision): string
|
||||||
{
|
{
|
||||||
$string = '';
|
$string = '';
|
||||||
|
|
||||||
|
@ -187,8 +187,7 @@ function convert_content(App $a) {
|
||||||
$o .= '<h3>Unit Conversions</h3>';
|
$o .= '<h3>Unit Conversions</h3>';
|
||||||
|
|
||||||
if (isset($_POST['from_unit']) && isset($_POST['value'])) {
|
if (isset($_POST['from_unit']) && isset($_POST['value'])) {
|
||||||
$_POST['value'] = $_POST['value'] + 0;
|
$o .= ($conv->getTable(intval($_POST['value']), $_POST['from_unit'], $_POST['to_unit'], 5)) . '</p>';
|
||||||
$o .= ($conv->getTable($_POST['value'], $_POST['from_unit'], $_POST['to_unit'], 5)) . '</p>';
|
|
||||||
} else {
|
} else {
|
||||||
$o .= '<p>Select:</p>';
|
$o .= '<p>Select:</p>';
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ function impressum_footer(App $a, string &$body)
|
||||||
{
|
{
|
||||||
$text = ProxyUtils::proxifyHtml(BBCode::convert(DI::config()->get('impressum','footer_text')));
|
$text = ProxyUtils::proxifyHtml(BBCode::convert(DI::config()->get('impressum','footer_text')));
|
||||||
|
|
||||||
if (! $text == '') {
|
if ($text != '') {
|
||||||
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/impressum/impressum.css" media="all" />';
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/impressum/impressum.css" media="all" />';
|
||||||
$body .= '<div class="clear"></div>';
|
$body .= '<div class="clear"></div>';
|
||||||
$body .= '<div id="impressum_footer">' . $text . '</div>';
|
$body .= '<div id="impressum_footer">' . $text . '</div>';
|
||||||
|
|
Loading…
Reference in a new issue