PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » PEAR » PEAR » Bug #3061

potential warning in PEAR_Exception

Details

Submitted2004-12-30 15:15 UTC
Fromsmith at backendmedia dot com
Assignedcellog
StatusClosed
PackagePEAR
PHP VersionIrrelevant
OSirrelevant
Roadmaps(Not assigned)

Comments

[2004-12-30 15:15 UTC] smith at backendmedia dot com

Description:
------------
RCS file: /repository/pear-core/PEAR/Exception.php,v
retrieving revision 1.17
diff -w -b -r1.17 Exception.php
229,230c229,230
< 'file' => $trace[0]['file'],
< 'line' => $trace[0]['line']);
---
> 'file' => @$trace[0]['file'],
> 'line' => @$trace[0]['line']);

not really a fix .. just pointing out the potential problem