On Sun, Mar 2, 2008 at 9:28 PM, DanTMan dan_the_man@telus.net wrote:
Oh, off topic but... No-one probably noticed it because it isn't used anywhere inside of the code. But on Line 321 of includes/Title.php the definition for the Title::nameOf function is missing the "public static" that should be there. It's not used, but someone's going to get a big shock when they try and use the function that says it's static but they need an arbitrary instance to use it.
Well, actually PHP will just give an E_STRICT notice when you try to use a non-static method statically. :)