Don’t forget it is a new year, and that means updating your copyrights at the bottom of your sites to reflect the change in years.

On my blog, I have set it up so that PHP does the work for me.

echo $date("Y");

As it is on DavidCubed:
© 1999-<?php echo date("Y"); ?> David Peralty. All Rights Reserved

This makes it so that it shows the current year as the end year of my copyright string. It makes it so that I never have to manually update the year.

If you have your copyright text set up statically, this might be something you might want to change, starting today, especially if you have more than one site you’d need to change 2006 to 2007 on.