Auto-Update Your Copyright for PhpLD
Monday, June 2nd, 2008This is no complicated hack, but it comes in handy because it such a small thing. I know I always forget about it.
Open init.php and find
[php]?>[/php]
Above Add
[php]//Auto Update Copyright
$start_year = ‘2007′;
if($stary_year < date('Y')){
$copyright = $start_year . ' - ' . date('Y');
}else{
$copyright = $start_year;
}
$tpl->assign(‘copyright’, ‘Lobo Links Directory © ‘.$copyright);
//Auto Update Copyright[/php]
Open templates/your_template/footer.tpl and add where you [...]