aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/type
diff options
context:
space:
mode:
Diffstat (limited to 'type')
-rw-r--r--type/GenericStacked.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/type/GenericStacked.class.php b/type/GenericStacked.class.php
index 5d1a556..fd6abc7 100644
--- a/type/GenericStacked.class.php
+++ b/type/GenericStacked.class.php
@@ -37,7 +37,7 @@ class Type_GenericStacked extends Type_Default {
37 if ($i == (count($sources)-1)) 37 if ($i == (count($sources)-1))
38 $rrdgraph[] = sprintf('CDEF:area_%s=avg_%1$s', crc32hex($sources[$i])); 38 $rrdgraph[] = sprintf('CDEF:area_%s=avg_%1$s', crc32hex($sources[$i]));
39 else 39 else
40 $rrdgraph[] = sprintf('CDEF:area_%s=area_%s,avg_%1$s,+', crc32hex($sources[$i]), crc32hex($sources[$i+1])); 40 $rrdgraph[] = sprintf('CDEF:area_%s=area_%s,avg_%1$s,ADDNAN', crc32hex($sources[$i]), crc32hex($sources[$i+1]));
41 } 41 }
42 42
43 $c = 0; 43 $c = 0;