Skip to content

Commit e489901

Browse files
committed
Merge remote-tracking branch 'origin/rector/php80/ChangeSwitchToMatchRector' into rector/php80/ChangeSwitchToMatchRector
2 parents fab15ff + f881c0a commit e489901

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515
- name: Check Spelling
16-
uses: rojopolis/spellcheck-github-actions@0.49.0
16+
uses: rojopolis/spellcheck-github-actions@0.51.0
1717
with:
1818
config_path: .github/spellcheck.yml
1919
task_name: Markdown

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ See: https://docs.openmage.org/
2323

2424
## Sponsorship
2525

26-
* [opencollective](https://opencollective.com/openmage) [Colin Mollenhour](https://github.com/colinmollenhour))
26+
* [opencollective](https://opencollective.com/openmage) (maintained by [Colin Mollenhour](https://github.com/colinmollenhour))
2727

2828
## License
2929

app/design/adminhtml/default/default/template/sales/order/shipment/create/items.phtml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ function validQtyItems() {
125125
var valid = true;
126126
var errorMessage = '<?php echo Mage::helper('core')->jsQuoteEscape($this->helper('sales')->__('Invalid value(s) for Qty to Ship')) ?>';
127127
$$('.qty-item').each(function(item) {
128-
var val = parseFloat(item.value);
129-
if (isNaN(val) || val < 0) {
128+
if (isNaN(item.value) || parseFloat(item.value) < 0) {
130129
valid = false;
131130
alert(errorMessage);
132131
throw $break;

composer.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)