Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jun 2024 06:47:14 GMT
From:      Alexander Leidinger <netchild@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: fa9f289eb033 - main - www/tt-rss: Only include functions.php via autoload.php
Message-ID:  <202406040647.4546lEi4022205@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)));
 ?>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406040647.4546lEi4022205>