Fix the footer in one more location.

This commit is contained in:
markjcrane 2016-04-02 14:26:29 -06:00
parent 284c3e3a91
commit ea84e9f044
1 changed files with 14 additions and 1 deletions

View File

@ -1867,7 +1867,19 @@
</td>
</tr>
</table>
<div id='footer' style='width: 100%; margin-bottom: 60px;'><span class='footer'>&copy; Copyright 2008 - <?php echo date("Y"); ?> <a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a>. All rights reserved.</span></div>
<div id='footer' style='width: 100%; margin-bottom: 60px;'>
<span class='footer'>
<?php
if (isset($_SESSION['theme']['footer']['text'])) {
echo $_SESSION['theme']['footer']['text'];
}
else {
echo " ";
echo "&copy; ".$text['theme-label-copyright']." 2008 - ".date("Y")."<a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a>".$text['theme-label-all_rights_reserved'];
}
?>
</span>
</div>
</div>
<?php
@ -1895,6 +1907,7 @@
echo $_SESSION['theme']['footer']['text'];
}
else {
echo " ";
echo "&copy; ".$text['theme-label-copyright']." 2008 - ".date("Y")."<a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a>".$text['theme-label-all_rights_reserved'];
}
?>