mirror of
https://git.freebsd.org/ports.git
synced 2025-07-02 10:00:37 -04:00
- 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
8 lines
176 B
PHP
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)));
|
|
?>
|