Skip to content

Commit 9abed0d

Browse files
committed
fix
1 parent 0e1ff3f commit 9abed0d

File tree

2 files changed

+2
-2
lines changed
  • app/code/core/Mage

2 files changed

+2
-2
lines changed

app/code/core/Mage/Adminhtml/Block/Widget/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ public function getMessageBlockVisibility()
967967
}
968968

969969
/**
970-
* @param int $limit
970+
* @param null|int $limit
971971
* @return $this
972972
*/
973973
public function setDefaultLimit($limit)

app/code/core/Mage/ImportExport/Block/Adminhtml/Export/Filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct()
4242
$this->setDefaultSort('frontend_label');
4343
$this->setDefaultDir('ASC');
4444
$this->setPagerVisibility(false);
45-
$this->setDefaultLimit(0);
45+
$this->setDefaultLimit(null);
4646
$this->setUseAjax(true);
4747
}
4848

0 commit comments

Comments
 (0)