I am using vB 2.0.3 on another forum that I help, and when I installed I get this error when I try to go to Add or Modify
Fatal error: Cannot redeclare getrowbg() in /*/*/public_html/forum/admin/adminfunctions.php on line 83
Here is the code in that part of adminfunctions
Code:
// ###################### Start getrowbg #######################
function getrowbg () {
// returns the current alternating class for <TR> rows in the CP.
global $bgcounter;
if ($bgcounter++%2==0) {
return "firstalt";
} else {
return "secondalt";
}
}