On ForumPage.cs file you can find code as below (Line 698 aprox)...
else if ( ForumControl.LockedForum == 0 )
{
if ( themeCredit != null && themeCredit.Length > 0 ) footer.Append( themeCredit );
footer.AppendFormat( GetText( "COMMON", "POWERED_BY" ),
String.Format( "<a target=\"_top\" title=\"Yet Another Forum Home Page\" href=\"http://www.yetanotherforum.net/\">Yet Another Forum.net</a>" ),
String.Format( Data.AppVersionName )
);
footer.AppendFormat("<br />Copyright © 2008-2009 LERN. No rights reserved."

;
footer.AppendFormat( "<br/>" );
footer.AppendFormat( this.m_adminMessage ); // Append a error message for an admin to see (but not nag)
if ( BoardSettings.ShowPageGenerationTime )
footer.AppendFormat( GetText( "COMMON", "GENERATED" ), duration );
}
rest you know where to change and how to go...