From: Raimond Spekking Date: Fri, 31 Oct 2008 10:43:49 +0000 (+0000) Subject: Fixing a Fatal error: Using $this when not in object context in F:\xampp\htdocs\wiki2... X-Git-Tag: 1.31.0-rc.0~44499 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=3a2dffb9377a5864653b097ecfe10adfa6833d59;p=lhc%2Fweb%2Fwiklou.git Fixing a Fatal error: Using $this when not in object context in F:\xampp\htdocs\wiki2\includes\Linker.php on line 1759 --- diff --git a/includes/Linker.php b/includes/Linker.php index c15e32843d..452bf0670a 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1756,7 +1756,7 @@ class Linker { } if ( $options == 'withaccess' ) { - $accesskey = $this->accesskey( $name ); + $accesskey = self::accesskey( $name ); if( $accesskey !== false ) { if ( $tooltip === false || $tooltip === '' ) { $tooltip = "[$accesskey]";