Ignore:
Timestamp:
Jan 28, 2010, 12:30:36 PM (14 years ago)
Author:
nikrou
Message:

Feature 511 : add support for sqlite database engine

Using session_write_close function when session handler use database because write is called after object destruction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/dblayer/functions_mysql.inc.php

    r4387 r4781  
    459459}
    460460
    461 function pwg_db_concat_ws($string, $separaor)
    462 {
    463   return 'CONCAT_WS(\''.$separaor.'\','. $string.')';
     461function pwg_db_concat_ws($array, $separator)
     462{
     463  $string = implode($array, ',');
     464  return 'CONCAT_WS(\''.$separator.'\','. $string.')';
    464465}
    465466
Note: See TracChangeset for help on using the changeset viewer.