summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2001-07-31 07:57:14 +0000
committerStig Bakken <ssb@php.net>2001-07-31 07:57:14 +0000
commitae92dc7139eb735b1d7bda61d03b1c6f59f373cd (patch)
tree23e3be98690da639660030fa0f903361a2e1a7e2
parent982cd24aa48a28e5c33d2aade8d764973dff6cd8 (diff)
downloadphp-git-ae92dc7139eb735b1d7bda61d03b1c6f59f373cd.tar.gz
* DB_storage broke when DB_common::query was added, fixed
-rw-r--r--pear/PEAR.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php
index a98c04e60f..bbdfcfccf0 100644
--- a/pear/PEAR.php
+++ b/pear/PEAR.php
@@ -251,7 +251,6 @@ class PEAR
*
* @since PHP 4.0.5
*/
-
function &raiseError($message = null,
$code = null,
$mode = null,
@@ -318,6 +317,7 @@ class PEAR
}
// }}}
+ // {{{ pushErrorHandling()
/**
* Push a new error handler on top of the error handler options stack. With this
@@ -362,6 +362,9 @@ class PEAR
return true;
}
+ // }}}
+ // {{{ popErrorHandling()
+
/**
* Pop the last error handler used
*
@@ -382,6 +385,7 @@ class PEAR
return true;
}
+ // }}}
}
// {{{ _PEAR_call_destructors()