diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2025-04-08 10:25:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-08 10:25:42 +0200 |
commit | be73c6d6694beb6d68b90b6e59223a397676b303 (patch) | |
tree | 9bcde6b589874c76be40befbe46f54c25bebadb7 | |
parent | a585b935d5632f0a45eddfbb7762371c5122242f (diff) | |
download | freshrss-be73c6d6694beb6d68b90b6e59223a397676b303.tar.gz freshrss-be73c6d6694beb6d68b90b6e59223a397676b303.zip |
Fix regression ext.php (#7499)
fix https://github.com/FreshRSS/FreshRSS/issues/7498
Regression from https://github.com/FreshRSS/FreshRSS/pull/7495
-rw-r--r-- | p/ext.php | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ <?php declare(strict_types=1); require(__DIR__ . '/../constants.php'); +require(LIB_PATH . '/lib_rss.php'); //Includes class autoloader function get_absolute_filename(string $file_name): string { $core_extension = realpath(CORE_EXTENSIONS_PATH . '/' . $file_name); |