summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_rrd_graph.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/status_rrd_graph.php')
-rwxr-xr-xusr/local/www/status_rrd_graph.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php
index 125abf4..78acd9c 100755
--- a/usr/local/www/status_rrd_graph.php
+++ b/usr/local/www/status_rrd_graph.php
@@ -384,7 +384,7 @@ function get_dates($curperiod, $graph) {
if($curcat == "custom") {
foreach ($custom_databases as $db => $database) {
- $optionc = split("-", $database);
+ $optionc = explode("-", $database);
$search = array("-", ".rrd", $optionc);
$replace = array(" :: ", "", $friendly);
echo "<option value=\"{$database}\"";
@@ -399,7 +399,7 @@ function get_dates($curperiod, $graph) {
if(! preg_match("/($curcat)/i", $database)) {
continue;
}
- $optionc = split("-", $database);
+ $optionc = explode("-", $database);
$search = array("-", ".rrd", $optionc);
$replace = array(" :: ", "", $friendly);
@@ -487,7 +487,7 @@ function get_dates($curperiod, $graph) {
if(! preg_match("/($curcat)/i", $curdatabase)) {
continue;
}
- $optionc = split("-", $curdatabase);
+ $optionc = explode("-", $curdatabase);
$search = array("-", ".rrd", $optionc);
$replace = array(" :: ", "", $friendly);
switch($curoption) {
@@ -562,7 +562,7 @@ function get_dates($curperiod, $graph) {
if(! stristr($curdatabase, $curcat)) {
continue;
}
- $optionc = split("-", $curdatabase);
+ $optionc = explode("-", $curdatabase);
$search = array("-", ".rrd", $optionc);
$replace = array(" :: ", "", $friendly);
switch($curoption) {
OpenPOWER on IntegriCloud