Last modified: 2006-01-10 19:54:18 UTC
Code moved from dateFormat() to date() retained a return statement that should have become an assignment: return $wgAmericanDates ? MW_DATE_MDY : MW_DATE_DMY; should be: $datePreference = $wgAmericanDates ? MW_DATE_MDY : MW_DATE_DMY;
Created attachment 1284 [details] Convenience patch
Thanks for the patch, I'm breaking too much things lately.