Уважаемые форумчане, не силен в РНР, потому прошу помощи у спецов, ниже приведен код из шаблона Phoenicis, в настройках вывода которого задается или логотип, или слоган. Как изменить его так, чтоб и логотип и слоган выводились одновременно? <?php $siteName = $this->sitename(); if ($this->getParam('logoType')=='image'): ?> <h1 class="logo"> <a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a> </h1> <?php else: $logoText = (trim($this->getParam('logoType-text-logoText'))=='') ? $config->sitename : $this->getParam('logoType-text-logoText'); $sloganText = (trim($this->getParam('logoType-text-sloganText'))=='') ? JText::_('SITE SLOGAN') : $this->getParam('logoType-text-sloganText');?> <div class="logo-text"> <h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1> <p class="site-slogan"><?php echo $sloganText;?></p> </div> <?php endif; ?>