
11-04-2005, 04:03 PM
|
|
|
Join Date: Dec 2001
Location: Royal Palm Beach, Florida
Posts: 232
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
THANK YOU!!!
Quote:
Originally Posted by noppid
Yes Sal, it's done within the fetch_footer function in the archive_functions.php file, not the footer.php.
In archive_functions.php locate:
PHP Code:
function fetch_footer()
{
global $archive_options;
ob_start();
include('./' . str_replace($archive_options['forumurl'], '', $archive_options['archiveurl']) . '/footer.php');
$footer = ob_get_contents();
ob_end_clean();
$footer .= '
<p align="center">
<br /><br />
<font size="1" color="#999999">
vBulletin Copyright ©2000 - ' . date('Y') . ',
Jelsoft Enterprises Limited.<br />
<b>vB Easy Archive Final</b> ©2000 - ' . date('Y') . '
- Created by <a href="http://www.xenon-shacuros.de/">Stefan "Xenon" Kaeser</a>
<br />
</font>
</p>
</body>
</html> ';
return $footer;
}
Replace with:
PHP Code:
function fetch_footer()
{
global $archive_options,$ad_network;
ob_start();
include('./' . str_replace($archive_options['forumurl'], '', $archive_options['archiveurl']) . '/footer.php');
$footer = ob_get_contents();
ob_end_clean();
$footer .= '
<p align="center">
<br /><br />
<font size="1" color="#999999">
vBulletin Copyright ©2000 - ' . date('Y') . ',
Jelsoft Enterprises Limited.<br />
<b>vB Easy Archive Final</b> ©2000 - ' . date('Y') . '
- Created by <a href="http://www.xenon-shacuros.de/">Stefan "Xenon" Kaeser</a>
<br />
</font>
</p>
<center>
<br />'.$ad_network.'</center>
</body>
</html>
';
return $footer;
}
At least that's how I did it. There's more then one way to skin a cat.
|
|