Ignore:
Timestamp:
Mar 19, 2010, 8:39:15 PM (14 years ago)
Author:
nikrou
Message:

Fix some sql issues :

  • permalink that use if() syntax
  • add tables themes for other database engines that mysql
File:
1 edited

Legend:

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

    r5036 r5192  
    125125function pwg_db_changes($result)
    126126{
    127   return mysql_affected_rows($result);
     127  return mysql_affected_rows();
    128128}
    129129
     
    462462{
    463463  $string = implode($array, ',');
    464   return 'CONCAT(\''. $string.'\')';
     464  return 'CONCAT('. $string.')';
    465465}
    466466
Note: See TracChangeset for help on using the changeset viewer.