declare a few more variables properly
authorEileen McNaughton <eileen@fuzion.co.nz>
Wed, 14 Jan 2015 22:01:03 +0000 (11:01 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Wed, 14 Jan 2015 22:01:03 +0000 (11:01 +1300)
CRM/Report/Form.php

index e2b9df741f026c9e2db787348c0fb21aa4de30e8..f8e82a243b3324ca8ee8729d6c17cfb36429de8a 100644 (file)
@@ -318,6 +318,21 @@ class CRM_Report_Form extends CRM_Core_Form {
    */
   protected $_currencyColumn = NULL;
 
+  /**
+   * @var string
+   */
+  protected $_interval;
+
+  /**
+   * @var bool
+   */
+  protected $_sendmail;
+
+  /**
+   * @var int
+   */
+  protected $_chartId;
+
   /**
    */
   public function __construct() {
@@ -2911,7 +2926,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND
             'openFlashChart/' . $chartImg;
           //Load the image
           $chart = imagecreatefrompng($uploadUrl);
-          //convert it into formattd png
+          //convert it into formatted png
           header('Content-type: image/png');
           //overwrite with same image
           imagepng($chart, $uploadImg);