Commit 0484b30f437f2d7c40eac036268098abc20d7ef6

Authored by alex
1 parent 20d6a942

bugfix

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
frontend/views/site/price.php
... ... @@ -37,7 +37,7 @@ $this->params[ 'breadcrumbs' ][] = $this->title;
37 37 <div class="row">
38 38 <div class="col-md-12">
39 39 <?php
40   - echo $page_stom->lang->body;
  40 + (isset($page_cosm->lang))?$page_cosm->lang->body:'';
41 41 ?>
42 42 </div>
43 43 </div>
... ... @@ -46,7 +46,7 @@ $this-&gt;params[ &#39;breadcrumbs&#39; ][] = $this-&gt;title;
46 46 <div class="row">
47 47 <div class="col-md-12">
48 48 <?php
49   - echo $page_cosm->lang->body;
  49 + echo (isset($page_cosm->lang))?$page_cosm->lang->body:'';
50 50 ?>
51 51 </div>
52 52 </div>
... ...