Changeset 433


Ignore:
Timestamp:
07/08/07 23:30:02 (17 years ago)
Author:
bastiaans
Message:

web/addons/job_monarch/graph.php:

  • bugfix: only look for rrd dirs in archive if period start/stop is set
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/addons/job_monarch/graph.php

    r409 r433  
    8383
    8484if (isset($graph)) {
    85         $rrd_dirs = $trd->getRrdDirs( $period_start, $period_stop );
    8685        $series = '';
     86        if( isset( $period_start ) && isset( $period_stop ) )
     87        {
     88                $rrd_dirs = $trd->getRrdDirs( $period_start, $period_stop );
     89        }
    8790
    8891        if($graph == "cpu_report") {
     92
    8993                $style = "CPU";
    9094                //printf("ik doe die shit!\n");
Note: See TracChangeset for help on using the changeset viewer.