Fix the footer in one more location.
This commit is contained in:
parent
284c3e3a91
commit
ea84e9f044
|
|
@ -1867,7 +1867,19 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div id='footer' style='width: 100%; margin-bottom: 60px;'><span class='footer'>© 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 "© ".$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 "© ".$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'];
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue