Last modified: 2010-05-15 15:33:44 UTC
it is found in 1.4.2 actually, not 1.4.0, (do not have the option). in Skin.php, there is a function "makeKnownLinkObj", the second "wfProfileIn" seems to be "wfProfileOut". for patch: 1506c1506 < wfProfileOut( $fname ); --- > wfProfileIn( $fname );
Created attachment 448 [details] patch to solve typo in Skin.php line 1506
Fix applied in CVS HEAD and REL1_4, thanks for the catch. For future reference, try to make your diffs with the -u option as this provides some context and makes it easier to a) see what the patch does from reading it and b) automatically merge the patch when the file has been changed. The order of arguments should also be original, _then_ new file; this diff seems to be reversed.