]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/FileTag.php
Merge pull request #11082 from annando/Fix-rendertime
[friendica.git] / src / Model / FileTag.php
index 324a78fa6ffa48c9ba28b9ad0d8ca34f64bc640d..d459237e757355684e6043172c3c99d76c57c8e2 100644 (file)
@@ -114,21 +114,4 @@ class FileTag
 
                return $return;
        }
-
-       /**
-        * Get file tags from list
-        *
-        * ex. given music,video return <music><video> or [music][video]
-        * @param string $list A comma delimited list of tags.
-        * @param string $type Optional file type.
-        *
-        * @return string       A list of file tags.
-        * @deprecated since 2019.06 use arrayToFile() instead
-        */
-       public static function listToFile(string $list, string $type = 'file')
-       {
-               $list_array = explode(',', $list);
-
-               return self::arrayToFile($list_array, $type);
-       }
 }