Quote:
Originally Posted by ConsoleShark
extreme-gaming the file you uploading fixed the error in the albums, however it still messes up the copyright Jelsoft Enterprises Ltd. becomes Content Relevant URLs by YABBSEO v1.1
|
Line 465 in yabbseo/forumhook/parse_output.php makes those changes, basically it 'tells' the script to replace Jelsoft Enterprises Ltd with the yabbseo copyright:
Code:
$output = str_replace(strpos($output,'<!--YABBSEO_COPYRIGHT-->')===false ? "Jelsoft Enterprises Ltd" : "<!--YABBSEO_COPYRIGHT-->",
Simply replace the following lines:
Code:
# copyright information
$copyrights = array(
1=>'<a href="http://yabsoft.com" target="blank">Search Engine Friendly URLs by YABBSEO '.YABBSEO_VER.'</a>',
2=>'<a href="http://yabsoft.com" target="blank">Content Relevant URLs by YABBSEO '.YABBSEO_VER.'</a>',
3=>'<a href="http://yabsoft.com" target="blank">Search Engine Optimization by YABBSEO '.YABBSEO_VER.'</a>',
4=>'<a href="http://yabsoft.com" target="blank">SEO by YABBSEO '.YABBSEO_VER.'</a>',
5=>'Search Engine Friendly URLs by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
6=>'Content Relevant URLs by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
7=>'Search Engine Optimization by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
8=>'SEO by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
);
With:
Code:
# copyright information
$copyrights = array(
1=>'Jelsoft Enterprises Ltd<br /><a href="http://yabsoft.com" target="blank">Search Engine Friendly URLs by YABBSEO '.YABBSEO_VER.'</a>',
2=>'Jelsoft Enterprises Ltd<br /><a href="http://yabsoft.com" target="blank">Content Relevant URLs by YABBSEO '.YABBSEO_VER.'</a>',
3=>'Jelsoft Enterprises Ltd<br /><a href="http://yabsoft.com" target="blank">Search Engine Optimization by YABBSEO '.YABBSEO_VER.'</a>',
4=>'Jelsoft Enterprises Ltd<br /><a href="http://yabsoft.com" target="blank">SEO by YABBSEO '.YABBSEO_VER.'</a>',
5=>'Jelsoft Enterprises Ltd<br />Search Engine Friendly URLs by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
6=>'Jelsoft Enterprises Ltd<br />Content Relevant URLs by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
7=>'Jelsoft Enterprises Ltd<br />Search Engine Optimization by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
8=>'Jelsoft Enterprises Ltd<br />SEO by YABBSEO '.YABBSEO_VER.' ?2005, YABSoft.com',
);
And that will fix it plus put the seo copyright down on the next line