Changeset 6817
- Timestamp:
- 09/19/08 20:28:54 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/jpgraph_lib/jpgraph_pie3d.php
r173 r6817 40 40 // Set label arrays 41 41 function SetLegends($aLegend) { 42 $this->legends = array_reverse($aLegend); 42 if (version_compare(phpversion(),'5.0','lt')) { 43 $this->legends = array_reverse($aLegend); 44 } else { 45 $this->legends = $aLegend; 46 } 43 47 } 44 48
