Skip to content

Commit cb6cded

Browse files
committed
Merge pull request #521 from magento-mpi/prs
[GITHUB] Merge public Github PRs
2 parents fc2de56 + b35c6b9 commit cb6cded

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function getFullTaxInfo()
145145
public function canDisplay()
146146
{
147147
$amount = $this->getAmount();
148-
return $this->getDisplayZero() || $amount != 0;
148+
return $this->getDisplayZero() === 'true' || $amount != 0;
149149
}
150150

151151
/**

setup/view/magento/setup/create-admin-account.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $passwordWizard = sprintf(
4242
<h2 class="page-sub-title">{{$state.current.header}}</h2>
4343

4444
<p>
45-
Create a new Admin account to manage you store.
45+
Create a new Admin account to manage your store.
4646
</p>
4747

4848
<form

0 commit comments

Comments
 (0)