diff options
author | Stig Bakken <ssb@php.net> | 2003-04-03 23:05:25 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2003-04-03 23:05:25 +0000 |
commit | 4d7985929154723b60d882ce747a9bb8edf3fc33 (patch) | |
tree | a7d1d644ddec5b3620fdede49f63a3a2b9af3d00 /pear | |
parent | 165604818c5a9e9af6de968de322a9f8f570a597 (diff) | |
download | php-git-4d7985929154723b60d882ce747a9bb8edf3fc33.tar.gz |
* remove track_errors ini fiddling, was a PHP bug that should be fixed now
Diffstat (limited to 'pear')
-rw-r--r-- | pear/PEAR/Registry.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pear/PEAR/Registry.php b/pear/PEAR/Registry.php index 050d54ca9d..5f304ab23d 100644 --- a/pear/PEAR/Registry.php +++ b/pear/PEAR/Registry.php @@ -271,9 +271,7 @@ class PEAR_Registry extends PEAR $open_mode = 'r'; } - @ini_set('track_errors', true); $this->lock_fp = @fopen($this->lockfile, $open_mode); - @ini_restore('track_errors'); if (!is_resource($this->lock_fp)) { return $this->raiseError("could not create lock file" . @@ -689,4 +687,4 @@ class PEAR_Registry extends PEAR // }}} } -?>
\ No newline at end of file +?> |