Subversion Repositories cheapmusic

Rev

Rev 103 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php if (!empty($custSiteInfo['footer_copyright'])) {?>
2
	<div><?php echo str_replace('[year]', date('Y'), convertMarkdownToHtml($custSiteInfo['footer_copyright']))?></div>
155 - 3
<?php } else {
4
    $urlInfo = parse_url(SP_WEBPATH);
5
    $relNofollow = in_array($_SERVER['REQUEST_URI'], [$urlInfo['path'], $urlInfo['path']."/"]) ? "" : 'rel="nofollow"';
6
    ?>
103 - 7
	<div><?php echo str_replace('[year]', date('Y'), $spText['common']['copyright'])?></div>
8
    <div id="powered">
155 - 9
    	<?php echo $spText['common']['Powered by']; ?> <a href="<?php echo SP_MAIN_SITE?>" target="_blank" title="Seo Control Panel" <?php echo $relNofollow?>>Seo Panel</a>
103 - 10
    	<?php echo $translatorInfo?>
11
    </div>
12
<?php }?>
13