View Single Post
08-08-10, 07:08 PM   #1014
smoere
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 5
Originally Posted by WyriHaximus View Post
Code:
$post_background = (($post_nr/2!=round($post_nr/2)) ? $default_color : $highlight_color);
Enjoy .
shouldn't that be
Code:
$post_background = ((log($post_nr,2)!=round(log($post_nr,2))) ? $default_color : $highlight_color);
?

and btw: i'm way more interested in post number 18446744073709551616
  Reply With Quote