From: Sterling Hughes Date: Sun, 23 Jul 2000 17:10:06 +0000 (+0000) Subject: Remove $file and $line. X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf6e7e8034b79390e66a6b01891c5bd002bb6e42;p=php Remove $file and $line. --- 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; } /*