ports/www/tt-rss/files/ttrss_db_check.php.in
Derek Schrock 9b9114f7e7 www/tt-rss: Update to g20230509 and move database drivers to post config
- Update to g20230509 11946f014
- Move php database drivers a post install operation allowing the port
  to support both databases without having to make option changes or
  rebuilds.
- Update ttrssd to check for the configured driver

PR:		271397
2023-05-15 13:34:57 +09:00

8 lines
176 B
PHP

<?php
chdir("%%WWWDIR%%");
require_once "%%WWWDIR%%/classes/config.php";
require_once "%%WWWDIR%%/include/functions.php";
print(strtolower(Config::get(Config::DB_TYPE)));
?>