============================================================================================================================
Title: Copyright Notice v1.0

Author: John Briggs

Updated for 1.9.8 by: WormHole @ XMB Garage

Description:
This modification will provide an option in the admin panel settings to add your own text copyright in the footer of your forum.

Copyright:  2009 John Briggs. All rights reserved.

Compatability: XMB 1.9.8 SP3

Install Note: Before adding this modification to your forum you should back up all files related to this modification.

License Note: This modification is released under the GPL License. A copy is provided with this software package.

Author Note:
You downloaded this modification from XMBGarage.com, the #1 source for XMB related downloads.
Please visit http://www.xmbgarage.com/ for support.

============================================================================================================================
=======
Step 1:
=======
====================================
Go To Administration Panel --> Insert Raw SQL
====================================

Upload provided file named "SQL.txt" & click "Submit Changes" button.

============================================================================================================================
=======
Step 2:
=======
==============
Edit File: cp.php
==============
==========
Find Code:
==========

        printsetting4($lang['textbboffreason'], 'bboffreasonnew', stripslashes($SETTINGS['bboffreason']), 5, 50);

===============
Add Code Below:
===============

        // Copyright Notice Mod Begin
        printsetting2($lang['copyrightnotice'], 'copyrightnoticenew', $SETTINGS['copyrightnotice'], 50);
        // Copyright Notice Mod End

==========
Find Code:
==========

        $bboffreasonnew = postedVar('bboffreasonnew');

===============
Add Code Below:
===============

        // Copyright Notice Mod Begin
        $copyrightnoticenew = postedVar('copyrightnoticenew');
        // Copyright Notice Mod End

==========
Find Code:
==========

            onlinetoday_status='$onlinetoday_statusnew'

==================
Replace Code With:
==================

            onlinetoday_status='$onlinetoday_statusnew',
            copyrightnotice='$copyrightnoticenew'

============================================================================================================================
=======
Step 3:
=======
================
Edit File: header.php
================
==========
Find Code:
==========

// if the user is registered, check for new u2u's

===============
Add Code Above:
===============

// Copyright Notice Mod Begin
// strip slashes for copyright output
$SETTINGS['copyrightnotice'] = stripslashes($SETTINGS['copyrightnotice']);
// Copyright Notice Mod End

============================================================================================================================
=======
Step 4:
=======
=======================
Edit File: lang/English.lang.php
=======================
============================
Add Code To End Of File Above ?>
============================

// Copyright Notice Mod Begin
$lang['copyrightnotice'] = "Copyright Notice:<br /><span class=\"smalltxt\">This will display your copyright notice in the footer.</span>";
// Copyright Notice Mod End

============================================================================================================================
=======
Step 5:
=======
==========================
Go To Admin Panel --> Templates
==========================
=================
Edit Template: footer
=================
==========
Find Code:
==========

$footerstuff[totaltime]

==================
Add Code Above:
==================

$SETTINGS[copyrightnotice]
<br />
<br />

============================================================================================================================
Enjoy!