Fresh re-install still same problem made no file edits what so ever. I get this error when I got to the arcademodcp and try to edit score comments. That is the msg that pops up when i click the edit button.
Quote:
Warning: Missing argument 3 for skin_v3Arcade::copyright(), called in [path]/arcade/modules/mod_modcp.php on line 567 and defined in [path]/arcade/skins/skin_v3Arcade.php on line 1880
|
This is my line 567 in mo_modcp.php
PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']);
and here is line 1880 in skin_v3Arcade.php well the whole function.
PHP Code:
function copyright($version,$country,$BFL) {
//
// if you had BRANDING FREE before ibProArcade v2.7.1+
// please contact me via mail -> ibproarcade@gmail.com
// to get the new instructions for BRANDING FREE - more easy now!
// !! DO NOT CHANGE THE CODE IN HERE ANYMORE !!
//
$text = "
<div align='center' style='font-size: 8pt;'>
ibProArcade v{$version}<br />";
if ($country == "de") { $text = $text . "Erweiterte vBulletin-Version © MrZeropage (<a href='http://www.vbulletin-germany.org/forumdisplay.php?f=28' target='_blank' title='www.vbulletin-germany.org'>www.vbulletin-germany.org</a>)<br />"; }
else { $text = $text . "Extended vBulletin-Version © MrZeropage (<a href='https://vborg.vbsupport.ru/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }
$text = $text . "</div><br />";
return ($BFL ? "" : $text);
}
Ok... nice I figured it out. Commenting out line 567 in mod_modcp.php
PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']);
Fixed the error as a side effect it also removed branding. I don't think it really matters much because it only effects an area moderators can see. But if this bug effects other sections of the hack then the dev may want to look into it.