From: <var...@us...> - 2021-09-20 13:23:06
|
Revision: 10595 http://sourceforge.net/p/phpwiki/code/10595 Author: vargenau Date: 2021-09-20 13:23:05 +0000 (Mon, 20 Sep 2021) Log Message: ----------- lib/plugin/SystemInfo.php: add PDO Modified Paths: -------------- trunk/lib/plugin/SystemInfo.php Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2021-09-20 12:47:14 UTC (rev 10594) +++ trunk/lib/plugin/SystemInfo.php 2021-09-20 13:23:05 UTC (rev 10595) @@ -387,7 +387,7 @@ //TODO: windows only (no cygwin) $appsize = `du -s $dir | cut -f1`; - if (in_array($DBParams['dbtype'], array('SQL'))) { + if (in_array($DBParams['dbtype'], array('SQL', 'PDO'))) { //TODO: where is the data is actually stored? see phpMyAdmin $pagesize = 0; } elseif ($DBParams['dbtype'] == 'dba') { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |