|
From: Benjamin C. <bc...@us...> - 2005-08-27 20:17:16
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13011/inc Modified Files: Tag: releases-1_0 functions.php Log Message: Bringing in fix from HEAD for db_concat() Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.54 retrieving revision 1.54.2.1 diff -u -r1.54 -r1.54.2.1 --- functions.php 20 Jul 2005 18:47:25 -0000 1.54 +++ functions.php 27 Aug 2005 20:17:07 -0000 1.54.2.1 @@ -494,6 +494,7 @@ $pieces = func_get_args(); switch(DB_TYPE) { + case 'mysqli' : case 'mysql' : $retstr = 'concat('. delimit_list(', ', $pieces).')'; break; case 'pgsql' : case 'oci8' : |