|
From: Ulf E. <ulf...@us...> - 2005-08-27 13:51:49
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4494/inc Modified Files: functions.php Log Message: Adding 'mysqli' to db_concat() Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.62 retrieving revision 1.63 diff -u -r1.62 -r1.63 --- functions.php 27 Aug 2005 13:14:28 -0000 1.62 +++ functions.php 27 Aug 2005 13:51:42 -0000 1.63 @@ -497,6 +497,7 @@ $pieces = func_get_args(); switch(DB_TYPE) { + case 'mysqli' : case 'mysql' : $retstr = 'concat('. delimit_list(', ', $pieces).')'; break; case 'pgsql' : case 'oci8' : |