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
PLAIN TEXT
PHP:
?>
Above Add
PLAIN TEXT
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 [...]








