diff options
Diffstat (limited to 'app/Models/Share.php')
| -rw-r--r-- | app/Models/Share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Share.php b/app/Models/Share.php index 140ca0eca..d7ee3bde7 100644 --- a/app/Models/Share.php +++ b/app/Models/Share.php @@ -40,7 +40,7 @@ class FreshRSS_Share { * @param string $filename the name of the file to load. */ public static function load(string $filename): void { - $shares_from_file = @include($filename); + $shares_from_file = @include $filename; if (!is_array($shares_from_file)) { $shares_from_file = []; } |
