Hey guys,
As we're finalizing our new skin for our board (2.0.4), I've run into a bit of an odd dilemma with the render_forum_row template bit of the Forum Index section. The classes of the table cells are variables (obviously to allow for the row to be colored for queued topics/posts), and by default $class1 is set to the row2 class, and $class2 is set to the row1 class (as is $classposts, for the replies column). I wanted to swap these. I looked in the template bit incoming data variables and saw this:
CODE
$data="",$class1='row2',$class2='row1',$classposts='row2',$inforum=0
so I tried to changed to this:CODE
$data="",$class1='row1',$class2='row2',$classposts='row1',$inforum=0
thinking that would clearly be the way to swap them. Problem is that even after doing this, saving the template bit, and rebuilding the cache, it seems to have no effect.This has really got me boggled, and I'm wondering if it's perhaps just my installation, or maybe something I'm overlooking, or maybe a problem in IPB 2.0.4. Could some kind soul please try changing the incoming data variables as I did to see if it will indeed swap the cell colors? Any help would be most appreciated.
