git: fa9f289eb033 - main - www/tt-rss: Only include functions.php via autoload.php
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Jun 2024 06:47:14 UTC
The branch main has been updated by netchild: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa9f289eb033f95f2f5029498c33b3eb765d1ef0 commit fa9f289eb033f95f2f5029498c33b3eb765d1ef0 Author: Derek Schrock <dereks@lifeofadishwasher.com> AuthorDate: 2024-06-04 06:45:25 +0000 Commit: Alexander Leidinger <netchild@FreeBSD.org> CommitDate: 2024-06-04 06:47:11 +0000 www/tt-rss: Only include functions.php via autoload.php - Upstream 16b89cc293 broke files/ttrss_db_check.php.in PR: 278761 --- www/tt-rss/Makefile | 1 + www/tt-rss/files/ttrss_db_check.php.in | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/www/tt-rss/Makefile b/www/tt-rss/Makefile index b3bd8d35ea6b..f9e56493fbcc 100644 --- a/www/tt-rss/Makefile +++ b/www/tt-rss/Makefile @@ -1,5 +1,6 @@ PORTNAME= tt-rss PORTVERSION= g20240421 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= www PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} diff --git a/www/tt-rss/files/ttrss_db_check.php.in b/www/tt-rss/files/ttrss_db_check.php.in index c521a910b612..cbc7aaac8828 100644 --- a/www/tt-rss/files/ttrss_db_check.php.in +++ b/www/tt-rss/files/ttrss_db_check.php.in @@ -2,7 +2,7 @@ chdir("%%WWWDIR%%"); require_once "%%WWWDIR%%/classes/Config.php"; -require_once "%%WWWDIR%%/include/functions.php"; +require_once "%%WWWDIR%%/include/autoload.php"; print(strtolower(Config::get(Config::DB_TYPE))); ?>