summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2000-07-23 17:10:06 +0000
committerSterling Hughes <sterling@php.net>2000-07-23 17:10:06 +0000
commitbf6e7e8034b79390e66a6b01891c5bd002bb6e42 (patch)
tree82f3433fad578990e9a46397f14005624b963c89
parent9752d1a089e21bc2dd2f2018169f21d59ab3aeef (diff)
downloadphp-git-bf6e7e8034b79390e66a6b01891c5bd002bb6e42.tar.gz
Remove $file and $line.
-rw-r--r--pear/PEAR_Error.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/pear/PEAR_Error.php b/pear/PEAR_Error.php
index 7fa2218059..8f7762920a 100644
--- a/pear/PEAR_Error.php
+++ b/pear/PEAR_Error.php
@@ -39,17 +39,13 @@ class PEAR_Error
var $trigger_error = false;
var $message = '';
- var $file = '';
- var $line = 0;
/*
* constructor, set the basics...
*/
- function PEAR_Error ($message, $file = __FILE__, $line = __LINE__)
+ function PEAR_Error ($message)
{
$this->message = $message;
- $this->file = $file;
- $this->line = $line;
}
/*