From: Alexandre Emsenhuber Date: Sat, 10 Sep 2011 21:14:28 +0000 (+0000) Subject: Call Linker::titleAttrib() statically X-Git-Tag: 1.31.0-rc.0~27744 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=e068493dd0085d5dd6d4316233a6b2a83247fc93;p=lhc%2Fweb%2Fwiklou.git Call Linker::titleAttrib() statically --- 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'] ); }