Commit ae6a8610959c637dd76637422b93afd0d453ea53

Authored by Alex Savenko
1 parent e0766de9

error reporting using repeated email

src/app/backend/views/index.php
... ... @@ -79,8 +79,6 @@
79 79 </div>
80 80 </div>
81 81  
82   - <?= $this->flash->output(); ?>
83   -
84 82 <div id="content" class="clearfix">
85 83  
86 84 <?php
... ...
src/app/frontend/views/index.php
... ... @@ -222,9 +222,9 @@ $page_title = isset( $page_title ) &amp;&amp; !empty( $page_title ) ? $page_title : &#39;&#39;;
222 222 </div>
223 223 </div>
224 224  
225   - <?php
226   - echo $this->getContent();
227   - ?>
  225 + <?= $this->flash->output(); ?>
  226 +
  227 + <?= $this->getContent(); ?>
228 228  
229 229 </div>
230 230 <div id="footer">
... ...