From: Tim Starling Date: Sat, 20 Nov 2004 03:40:50 +0000 (+0000) Subject: in category browser, makeKnownLink() -> makeLink(), now that the delayed link expansi... X-Git-Tag: 1.5.0alpha1~1303 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=2ae9f89dc575b6aad1b53d1c5c200e988bb2da3b;p=lhc%2Fweb%2Fwiklou.git in category browser, makeKnownLink() -> makeLink(), now that the delayed link expansion bug is fixed --- diff --git a/includes/Skin.php b/includes/Skin.php index f3af0d76c7..1b667a77a8 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -469,7 +469,7 @@ class Skin { # add our current element to the list $eltitle = Title::NewFromText($element); # FIXME : should be makeLink() [AV] - $return .= $sk->makeKnownLink($element, $eltitle->getText()).' > '; + $return .= $sk->makeLink($element, $eltitle->getText()).' > '; } return $return; }