Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Jul 11, 2023
2 parents 68900aa + c36f57d commit 5ea608f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,11 @@ public function formPostAction()
$this->_getSession()->setAddressFormData($this->getRequest()->getPost())
->addException($e, $this->__('Cannot save address.'));
}

return $this->_redirectError(Mage::getUrl('*/*/edit', ['id' => $address->getId()]));
}

return $this->_redirectError(Mage::getUrl('*/*/edit', ['id' => $address->getId()]));
$this->_redirectReferer();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</tbody>
</table>
</div>
<div id="tree-div2" style="height:400px; margin-top:5px;overflow:auto"></div>
<div id="tree-div2" style="height:550px;margin-top:5px;overflow:auto"></div>
<script type="text/javascript">
//<![CDATA[
var allowDragAndDrop = <?php echo ($this->getIsReadOnly() ? 'false' : 'true'); ?>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
* @license https://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
?>
<div id="tree-div1" style="width:320px;height:400px;margin-top:5px;overflow:auto"></div>
<div id="tree-div1" style="width:320px;height:500px;margin-top:5px;overflow:auto"></div>

0 comments on commit 5ea608f

Please sign in to comment.