kenzzii / mtchart

Automatically exported from code.google.com/p/mtchart
GNU General Public License v3.0
0 stars 0 forks source link

Bad style: @operator at line 1804 #20

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Replace 
   if(@is_null($this->DataDescription['Symbol'][$ColName])) {

with

    if(isset($this->DataDescription['Symbol'][$ColName]) && is_null(is_null($this->DataDescription['Symbol'][$ColName])) {

Original issue reported on code.google.com by 128625 on 11 Aug 2010 at 3:11

GoogleCodeExporter commented 8 years ago
And if you're on it anyway: Hunt down the rest of @'s in the code.

Original comment by 128625 on 11 Aug 2010 at 3:12

GoogleCodeExporter commented 8 years ago
Fixed in revision 26.

Original comment by 128625 on 12 Aug 2010 at 9:21