Best Answer Sliapy , 03 May 2013 - 00:40
<?php if ($this->checkPosition('anons')) : ?> <div class="item-anons"> <?php echo $this->renderPosition('anons'); ?> <?php endif; ?> </div> <?php endif; ?>
Тут тоже лишний <?php endif; ?> внутри div/ Должно быть:
<?php if ($this->checkPosition('anons')) : ?> <div class="item-anons"> <?php echo $this->renderPosition('anons'); ?> </div> <?php endif; ?>Go to the full post
