| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2002-08-26 16:25 UTC] fab@php.net
  [2003-07-31 04:49 UTC] jon at latchkey dot com
  [2003-07-31 04:55 UTC] arnaud@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 04:00:01 2025 UTC | 
I am using version 1.3 of the Database Abstraction Layer. There is the following section in the buildManipSQL function in the DB/common.php file that I think may have a typo in it: The section is as follows: if ($where) { $sql .= " WHERE $sql"; } and I think it should be: if ($where) { $sql .= " WHERE $where"; }