Page MenuHomePhabricator

Typo in ExtensionFunctions.php
Closed, ResolvedPublic

Description

Author: Jason.Armistead

Description:
Looking at latest revsion of ExtensionFunctions.php, the word "constructor" in the first switch
statement is incorrect.

It reads (lines trimmed of excess whitespace to fit neatly)

default: 
         wfDebugDieBacktrace( "Too many arguments to construtor in extCreateObject" );

But should read

default:
         wfDebugDieBacktrace( "Too many arguments to constructor in extCreateObject" );

A small, easily fixable typo.


Version: unspecified
Severity: trivial
URL: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/ExtensionFunctions.php?revision=15706&view=markup

Details

Reference
bz8583

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:32 PM
bzimport set Reference to bz8583.
bzimport added a subscriber: Unknown Object (MLST).

Jason.Armistead wrote:

Silly me, I spelt "revision" wrong on the first line of my description !!! Shows how easy it is to
do this.

rotemliss wrote:

Fixed in r19125.