Last modified: 2011-03-13 18:05:28 UTC
Very minor bug: Looking at the LocalSettings.php produced, one notices a few $bla="fixed strings in double quotes"; whereas you might as well use $bla='fixed strings in single quotes'; and save a half a cycle. E.g., $wgDiff3 = "/usr/bin/diff3"; Might as well write $wgDiff3 = '/usr/bin/diff3'; Same throughout the other files.
Changing quotes is pointless. Having to alter quote types when you're editing LocalSettings.php and need to use string interpolation is inconvenient.