I've made a large number of tiny changes to the base source code so that module developers can turn on warnings (error_reporting(E_ALL);) in their code during development. I've found meaningful warnings to be enormously helpful, so I've changed all the $sVar .= whatever to confirm that $sVar exists before appending, and checking all the if ($_GET['some_option']) into if (!empty($_GET['some_option'])), that kind of stuff. Obviously, it's much easier for find typos if the system throws a warning, which I want it do to if I'm in development.
Of course, there's a chance I tweaked something that will break things, setting a variable to '' or 0 that should be an empty array, or initializing something that is later checked for isset() and now functions differently.
I'd like to check in (commit) all my changes within the next few hours. I'll leave warnings turned off, and was hoping a few folks could immediately check it out and pound on it for a bit to see if anything stopped working. I haven't made any changes to the modules, I've been testing with a clean install with no modules (that'll be the next step, I think).
Thanks! I can also be reached on AOL-IM as ChezTac, or tacman1123 on Jabber or Astra, or via email at tacman at gmail.
Tac
