From e068493dd0085d5dd6d4316233a6b2a83247fc93 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 10 Sep 2011 21:14:28 +0000 Subject: [PATCH] Call Linker::titleAttrib() statically --- includes/SkinTemplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index 5863c47f53..82d4ace368 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -1535,7 +1535,7 @@ abstract class BaseTemplate extends QuickTemplate { } if ( isset( $item['single-id'] ) ) { if ( isset( $item['tooltiponly'] ) && $item['tooltiponly'] ) { - $attrs['title'] = $this->getSkin()->titleAttrib( $item['single-id'] ); + $attrs['title'] = Linker::titleAttrib( $item['single-id'] ); if ( $attrs['title'] === false ) { unset( $attrs['title'] ); } -- 2.20.1