aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAlexandre Alapetite <alexandre@alapetite.fr>2025-04-08 10:25:42 +0200
committerGitHub <noreply@github.com>2025-04-08 10:25:42 +0200
commitbe73c6d6694beb6d68b90b6e59223a397676b303 (patch)
tree9bcde6b589874c76be40befbe46f54c25bebadb7
parenta585b935d5632f0a45eddfbb7762371c5122242f (diff)
downloadfreshrss-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.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/p/ext.php b/p/ext.php
index 33014e85f..98684e45e 100644
--- a/p/ext.php
+++ b/p/ext.php
@@ -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);