From: <var...@us...> - 2021-09-06 17:08:50
|
Revision: 10543 http://sourceforge.net/p/phpwiki/code/10543 Author: vargenau Date: 2021-09-06 17:08:49 +0000 (Mon, 06 Sep 2021) Log Message: ----------- lib/WikiDB/backend/PDO_oci8.php: move function backendType at top Modified Paths: -------------- trunk/lib/WikiDB/backend/PDO_oci8.php Modified: trunk/lib/WikiDB/backend/PDO_oci8.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_oci8.php 2021-09-06 16:49:20 UTC (rev 10542) +++ trunk/lib/WikiDB/backend/PDO_oci8.php 2021-09-06 17:08:49 UTC (rev 10543) @@ -1,5 +1,5 @@ <?php -/* +/** * Copyright © 2007 $ThePhpWikiProgrammingTeam * * This file is part of PhpWiki. @@ -30,6 +30,10 @@ class WikiDB_backend_PDO_oci8 extends WikiDB_backend_PDO { + function backendType() + { + return 'oci8'; + } function optimize() { @@ -60,11 +64,6 @@ } } - function backendType() - { - return 'oci8'; - } - function write_accesslog(&$entry) { $dbh = &$this->_dbh; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |