Marius Cramer
2013-11-14 b1a6a5a3991cec5cd08873b01376e45d0b247f18
server/lib/classes/cron.inc.php
@@ -163,6 +163,8 @@
     * @param string $sWDay the weekday field value
     * @param string $sMonth the month field value
     */
    public function setCronFields($sMinute = '*', $sHour = '*', $sDay = '*', $sMonth = '*', $sWDay = '*') {
        $this->_sMinute = $sMinute;
        $this->_sHour = $sHour;
@@ -171,6 +173,8 @@
        $this->_sWDay = $sWDay;
        $this->_bParsed = false;
    }
    
    /**
     * Parse a line of a cron and set the internal field values
@@ -266,6 +270,7 @@
        }
        return reset($this->_aValidValues[$sField]);
    }
}
?>