Skip to content

Commit

Permalink
Merge pull request #21 from mageplaza/2.4-develop
Browse files Browse the repository at this point in the history
2.4 develop
  • Loading branch information
haitv282 authored Aug 31, 2022
2 parents 9531cb7 + dc3511c commit b207f67
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "mageplaza/module-security",
"description": "Mageplaza Security Extension",
"require": {
"mageplaza/module-core": "^1.4.5",
"mageplaza/module-google-recaptcha": "^4.0.0",
"mageplaza/module-two-factor-authentication": "^4.0.0",
"mageplaza/module-core": "^1.4.12",
"mageplaza/module-google-recaptcha": "^4.0.1",
"mageplaza/module-two-factor-authentication": "^4.0.3",
"sinergi/browser-detector": "*"
},
"type": "magento2-module",
"version": "4.0.2",
"version": "4.0.3",
"license": "proprietary",
"authors": [
{
Expand Down
16 changes: 8 additions & 8 deletions view/adminhtml/templates/report.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
?>

<h1>
<?= $this->errorCode ? $block->escapeHtml($this->errorCode . ' - ') : '' ?>
<?= $block->escapeHtml($this->pageTitle) ?>
<?= $this->errorCode ? $this->errorCode . ' - ' : '' ?>
<?= $this->pageTitle ?>
</h1>
<?php if ($this->_config->action == '') : ?>
<p><em><?= $block->escapeHtml(__('Exception printing is disabled by default for security reasons.')) ?></em></p>
<p><em><?= __('Exception printing is disabled by default for security reasons.') ?></em></p>
<?php elseif ($this->reportData) : ?>
<div class="trace-container">
<div class="trace">
<pre><?= $block->escapeHtml($this->reportData) ?><br/>
Please read the following materials to resolve the problem:
- User Guide http://docs.mageplaza.com/security/
- FAQs https://www.mageplaza.com/faqs/
- Issues https://github.com/mageplaza/magento-2-security/issues'
<pre><?= $this->reportData ?><br/>
Please read the following materials to resolve the problem:
- User Guide http://docs.mageplaza.com/security/
- FAQs https://www.mageplaza.com/faqs/
- Issues https://github.com/mageplaza/magento-2-security/issues'
</pre>
</div>
</div>
Expand Down

0 comments on commit b207f67

Please sign in to comment.