Quote:
Originally Posted by leonnix
I edit the copyright for my wiki but it doesn't appear ! what should I do ?
|
If you did not get that sorted out yet, the copyright tag is not added to the footer text in the skin. You need to open Vbulletin.php. Find:
Code:
<?php $footerlinks = array(
'lastmod', 'viewcount', 'numberofwatchingusers',
);
Change to
Code:
<?php $footerlinks = array(
'copyright', 'lastmod', 'viewcount', 'numberofwatchingusers',
);
This adds the copyright notice as the first line of the footer. You can the placement of it by moving it elsewhere in that array.
Dexter...