diff options
author | nashe <thomas@chauchefoin.fr> | 2017-05-28 13:55:29 +0200 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-05-28 13:55:29 +0200 |
commit | 9022bab97250c7b6ad3a658197494c4ce5126da7 (patch) | |
tree | de84f479b98dd82abb403d5fa0ea1217d9a7c742 /app | |
parent | cec1a3d21fa822d4065492b217d997a8b1155d28 (diff) | |
download | planet-9022bab97250c7b6ad3a658197494c4ce5126da7.tar planet-9022bab97250c7b6ad3a658197494c4ce5126da7.tar.gz planet-9022bab97250c7b6ad3a658197494c4ce5126da7.tar.bz2 planet-9022bab97250c7b6ad3a658197494c4ce5126da7.tar.xz planet-9022bab97250c7b6ad3a658197494c4ce5126da7.zip |
OpmlManager's load() is being called statically, make it static
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/lib.opml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/lib.opml.php b/app/lib/lib.opml.php index b777f15..8676807 100644 --- a/app/lib/lib.opml.php +++ b/app/lib/lib.opml.php @@ -70,7 +70,7 @@ class opml class OpmlManager { - public function load($file) { + static function load($file) { if (@file_exists($file)) { $opml = new opml(); |