From: <var...@us...> - 2021-07-28 17:12:40
|
Revision: 10384 http://sourceforge.net/p/phpwiki/code/10384 Author: vargenau Date: 2021-07-28 17:12:38 +0000 (Wed, 28 Jul 2021) Log Message: ----------- backendType: check for "mysqli" also Modified Paths: -------------- trunk/lib/WikiDB/backend/PearDB.php Modified: trunk/lib/WikiDB/backend/PearDB.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB.php 2021-07-28 15:12:26 UTC (rev 10383) +++ trunk/lib/WikiDB/backend/PearDB.php 2021-07-28 17:12:38 UTC (rev 10384) @@ -1154,7 +1154,7 @@ function listOfFields($database, $table) { - if ($this->backendType() == 'mysql') { + if (($this->backendType() == 'mysql') || ($this->backendType() == 'mysqli')) { $fields = array(); assert(!empty($database)); assert(!empty($table)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |