ID:               26398
 Updated by:       [EMAIL PROTECTED]
 Reported By:      dimitri at vinogradov dot de
-Status:           Open
+Status:           Bogus
 Bug Type:         SQLite related
 Operating System: irrelevant
 PHP Version:      Irrelevant
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

This is a PEAR bug, it should be reported on:
http://pear.php.net/bugs/


Previous Comments:
------------------------------------------------------------------------

[2003-11-25 06:13:05] dimitri at vinogradov dot de

Just changed Category to SQLite related...
(hm...  no PEAR related category more ??)

------------------------------------------------------------------------

[2003-11-25 06:07:26] dimitri at vinogradov dot de

Description:
------------
File: DB/sqlite.php
Method: sqlite::connect
Linno: 157, 160


the failed calls of `touch` and `chmod` print warnings to browser
instead of raisung an PEAR error.


Suggest:  
change (lineno 157)
       touch($file);
to
       if ([EMAIL PROTECTED]($file)) {
           return $this->raiseError($php_errormsg);
       }
and    (lineno 160)
       chmod($file, $mode);  
to
       if ([EMAIL PROTECTED]($file, $mode)) {
           return $this->raiseError($php_errormsg);
       }



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=26398&edit=1

Reply via email to