Home » PEAR » PEAR » Bug #3061
potential warning in PEAR_Exception
Details
| Submitted | 2004-12-30 15:15 UTC |
|---|---|
| From | smith at backendmedia dot com |
| Assigned | cellog |
| Status | Closed |
| Package | PEAR |
| PHP Version | Irrelevant |
| OS | irrelevant |
| 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