Skip to content

Commit

Permalink
fix problem on saving email chain delay values
Browse files Browse the repository at this point in the history
  • Loading branch information
philippeaellig committed Aug 28, 2020
1 parent 5502d98 commit 87e383d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Controller/Adminhtml/Rule/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public function execute()
$template = $email['template'];

$day = isset($email['day'])?$email['day']:"";
$hour = isset($email['day'])?$email['day']:"";
$min = isset($email['day'])?$email['day']:"";
$hour = isset($email['hour'])?$email['hour']:"";
$min = isset($email['min'])?$email['min']:"";

$email = [
'template' => $template,
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"magenest/core": "*"
},
"type": "magento2-module",
"version": "100.3.2",
"version": "100.3.3",
"license": [
"BSD-3-Clause"
],
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Magenest_UltimateFollowupEmail" setup_version="100.3.1">
<module name="Magenest_UltimateFollowupEmail" setup_version="100.3.3">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Quote"/>
Expand Down

0 comments on commit 87e383d

Please sign in to comment.