diff options
author | Pim van den Berg | 2014-04-09 22:15:02 +0200 |
---|---|---|
committer | Pim van den Berg | 2014-04-09 22:15:02 +0200 |
commit | 8293432d570b08bdc6c90df1d7060c649bc65f67 (patch) | |
tree | b6a8a96f8160e3cf3a7b2dfca3486e0172f419ff | |
parent | overview: only calculate cores when config option showload is enabled (diff) | |
parent | fix: return operator prevents us from seeing a graph (diff) | |
download | apt-panopticon_cgp-8293432d570b08bdc6c90df1d7060c649bc65f67.zip apt-panopticon_cgp-8293432d570b08bdc6c90df1d7060c649bc65f67.tar.gz apt-panopticon_cgp-8293432d570b08bdc6c90df1d7060c649bc65f67.tar.bz2 apt-panopticon_cgp-8293432d570b08bdc6c90df1d7060c649bc65f67.tar.xz |
Merge pull request #61 from young-druid/patch-1
fix: return operator prevents us from seeing a graph
Diffstat (limited to '')
-rw-r--r-- | plugin/snmp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/snmp.php b/plugin/snmp.php index 0cbb32a..d3cdb96 100644 --- a/plugin/snmp.php +++ b/plugin/snmp.php | |||
@@ -27,7 +27,7 @@ switch(GET('t')) { | |||
27 | require_once 'type/Default.class.php'; | 27 | require_once 'type/Default.class.php'; |
28 | $obj = new Type_Default($CONFIG); | 28 | $obj = new Type_Default($CONFIG); |
29 | $obj->rrd_title = sprintf('SNMP: %s (%s)', $obj->args['type'], $obj->args['tinstance']); | 29 | $obj->rrd_title = sprintf('SNMP: %s (%s)', $obj->args['type'], $obj->args['tinstance']); |
30 | return; | 30 | break; |
31 | } | 31 | } |
32 | 32 | ||
33 | $obj->rrd_format = '%5.1lf%s'; | 33 | $obj->rrd_format = '%5.1lf%s'; |