Home » Structures » Structures_DataGrid » Bug #9376
Error at line 673
Details
| Submitted | 2006-11-18 15:49 UTC |
|---|---|
| From | arcadius at menelic dot com |
| Assigned | wiesemann |
| Status | Closed |
| Package | Structures_DataGrid |
| PHP Version | 4.4.3 |
| OS | WindowsXP |
| Roadmaps | (Not assigned) |
Comments
[2006-11-18 15:49 UTC] arcadius at menelic dot com
Description:
------------
Hi, I'm having a little prob using Datagrid in PHP4.4.3:
DataGrid.php,v 1.111 2006/10/14 20:15:37 wiesemann Exp $
@version $Revision: 1.111 $
<pre>
Fatal error: Call to a member function on a non-object in .. \Apache2\modules\php4\PEAR\pear\Structures\DataGrid.php on line 673
</pre>
The line 673 says:
if ($this->_dataSource->hasFeature('multiSort'))
The problem if fixed when I replace that line by
if (isset($this->_dataSource) && $this->_dataSource->hasFeature('multiSort'))
Thanks.