diff --git a/lib/helper.php b/lib/helper.php
index c3dc8740ee814950e17bf4138b0ad1b700a5f9bd..84ebcf1d55844d1a22027aa9f327c34a98360d4e 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -366,10 +366,10 @@ class OC_Helper {
 	/**
 	 * Try to guess the mimetype based on filename
 	 *
-	 * @param string $name
+	 * @param string $path
 	 * @return string
 	 */
-	static public function getFileNameMimeType($name){
+	static public function getFileNameMimeType($path){
 		if(strpos($path, '.')) {
 			//try to guess the type by the file extension
 			if(!self::$mimetypes || self::$mimetypes != include 'mimetypes.list.php') {