
Originally Posted by
teaj
After installing the CSS/JS Loader and FEC addons, I'm now having problems with the batch form print again.
After setting criteria and searching for orders if the 'Check All' button is pressed the page is reset and the list of orders is gone. It seems to forget the criteria, it's not being included in the request / address bar as it should be.
I believe this is the fix for this issue:
super_batch_forms.php change line 249 from
Code:
if (isset($_GET['oid_range_first'])) {
to
Code:
if (isset($_GET['start_date']) || isset($_GET['oid_range_first'])) {
Bookmarks