diff options
author | Pim van den Berg | 2013-10-07 21:56:41 +0200 |
---|---|---|
committer | Pim van den Berg | 2013-10-07 21:56:41 +0200 |
commit | f2a4593558b3a3ec696e9cc1de93fa898b9521bb (patch) | |
tree | f056b45dd121b1e2a214879c05f6b1a97154caae /type/Uptime.class.php | |
parent | Merge pull request #21 from benoit-monin/fix_undefined_index (diff) | |
download | apt-panopticon_cgp-f2a4593558b3a3ec696e9cc1de93fa898b9521bb.zip apt-panopticon_cgp-f2a4593558b3a3ec696e9cc1de93fa898b9521bb.tar.gz apt-panopticon_cgp-f2a4593558b3a3ec696e9cc1de93fa898b9521bb.tar.bz2 apt-panopticon_cgp-f2a4593558b3a3ec696e9cc1de93fa898b9521bb.tar.xz |
type: fix undefined index in ds_names[$source] before empty check
Diffstat (limited to 'type/Uptime.class.php')
-rw-r--r-- | type/Uptime.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/type/Uptime.class.php b/type/Uptime.class.php index 4ada117..6e08b0b 100644 --- a/type/Uptime.class.php +++ b/type/Uptime.class.php | |||
@@ -41,7 +41,7 @@ class Type_Uptime extends Type_Default { | |||
41 | 41 | ||
42 | $c = 0; | 42 | $c = 0; |
43 | foreach ($sources as $source) { | 43 | foreach ($sources as $source) { |
44 | $dsname = empty($this->ds_names[$source]) ? $source : $this->ds_names[$source]; | 44 | $dsname = (isset($this->ds_names[$source]) && !empty($this->ds_names[$source])) ? $this->ds_names[$source] : $source; |
45 | $color = is_array($this->colors) ? (isset($this->colors[$source])?$this->colors[$source]:$this->colors[$c++]) : $this->colors; | 45 | $color = is_array($this->colors) ? (isset($this->colors[$source])?$this->colors[$source]:$this->colors[$c++]) : $this->colors; |
46 | 46 | ||
47 | //current value | 47 | //current value |