From: Tim Starling Date: Fri, 30 Nov 2007 16:56:05 +0000 (+0000) Subject: Recently-introduced typo in Linker::makeStubLinkObj() (bug 12165) X-Git-Tag: 1.31.0-rc.0~50661 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=7863125a59861ca40c7b5789cd9a46db0c031eac;p=lhc%2Fweb%2Fwiklou.git Recently-introduced typo in Linker::makeStubLinkObj() (bug 12165) --- diff --git a/includes/Linker.php b/includes/Linker.php index c074853591..df5462c0ff 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -368,7 +368,7 @@ class Linker { * the end of the link. */ function makeStubLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) { - $this->makeColouredLinkObj( $nt, 'stub', $text, $query, $trail, $prefix ); + return $this->makeColouredLinkObj( $nt, 'stub', $text, $query, $trail, $prefix ); } /**