Or, you could try something like this...
For example, replace line 110 on the "Simple" template:
<?php echo WEBSITE_FOOTER; ?>
with this:
<?php echo str_replace('[YEAR]', date('Y'), WEBSITE_FOOTER); ?>
Then, somewhere in the footer text (changed from the "settings" section on WB administration), place the tag "[YEAR]", e.g:
Copyright (C), 2004-[YEAR] Ryan Djurovich
would give:
Copyright (C), 2004-2005 Ryan Djurovich
This makes things a little bit easier to maintain - next time you want to make a change to your footer you don't need to go through the process of updating your template!
