From d4d0c13876a8408f0a5271a2a95a916d79e4d3db Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 11 Nov 2013 08:28:03 +0000 Subject: [PATCH] static method can not use $this, there is no need to anyway --- phpgwapi/inc/class.mime_magic.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.mime_magic.inc.php b/phpgwapi/inc/class.mime_magic.inc.php index ac2f17807e..3f2028ff3a 100644 --- a/phpgwapi/inc/class.mime_magic.inc.php +++ b/phpgwapi/inc/class.mime_magic.inc.php @@ -99,7 +99,7 @@ class mime_magic */ public static function filename2mine($filename) { - return $this->filename2mime($filename); + return self::filename2mime($filename); } /**