projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f1da75
)
declare a few more variables properly
author
Eileen McNaughton
<eileen@fuzion.co.nz>
Wed, 14 Jan 2015 22:01:03 +0000
(11:01 +1300)
committer
Eileen McNaughton
<eileen@fuzion.co.nz>
Wed, 14 Jan 2015 22:01:03 +0000
(11:01 +1300)
CRM/Report/Form.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Report/Form.php
b/CRM/Report/Form.php
index e2b9df741f026c9e2db787348c0fb21aa4de30e8..f8e82a243b3324ca8ee8729d6c17cfb36429de8a 100644
(file)
--- a/
CRM/Report/Form.php
+++ b/
CRM/Report/Form.php
@@
-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 formatt
e
d png
header('Content-type: image/png');
//overwrite with same image
imagepng($chart, $uploadImg);