From 3a2dffb9377a5864653b097ecfe10adfa6833d59 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Fri, 31 Oct 2008 10:43:49 +0000 Subject: [PATCH] Fixing a Fatal error: Using $this when not in object context in F:\xampp\htdocs\wiki2\includes\Linker.php on line 1759 --- includes/Linker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]"; -- 2.20.1