blob: eea0703bc4301e01af05f03ca81045f471caa414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
// (c) 2014 Trinity Desktop Project
// All Rights Reserved
// Authors: Elizabeth Liddell, Timothy Pearson, and Calvin Morrison
function doFooter(){
echo(' <!--end content-->');
date_default_timezone_set('UTC'); #else the interpreter whines
echo(' <P ID="copyright">© 2011-' . date('Y') . ' Trinity Desktop Project');
?>
</DIV>
</DIV>
</DIV>
</DIV>
</DIV>
</BODY>
</HTML>
<?php
} #end of doFooter
?>
|