[dev] patch for lib/VFS/sql.php

Amith Varghese amith@xalan.com
Tue Oct 29 02:01:02 2002


Here is a patch to convert some '=' to '==' that was missed in the last commit.  

Amith


Index: lib/VFS/sql.php
===================================================================
RCS file: /repository/horde/lib/VFS/sql.php,v
retrieving revision 1.31
diff -r1.31 sql.php
185c185
<                                             (empty($path) &&
$this->_db->dbsyntax = 'oci8') ? ' IS NULL' : ' = ' . $this->_db->quote($path),
---
>                                             (empty($path) &&
$this->_db->dbsyntax == 'oci8') ? ' IS NULL' : ' = ' . $this->_db->quote($path),
311c311
<                                             (empty($path) &&
$this->_db->dbsyntax = 'oci8') ? ' IS NULL' : ' = ' . $this->_db->quote($path),
---
>                                             (empty($path) &&
$this->_db->dbsyntax == 'oci8') ? ' IS NULL' : ' = ' . $this->_db->quote($path),