/**
  * @see Form::save()
  */
 public function save()
 {
     parent::save();
     $src = '';
     if (is_array($this->cronThreadArchiveSrc) && count($this->cronThreadArchiveSrc)) {
         $src = implode(',', $this->cronThreadArchiveSrc);
     }
     AdminTools::saveCron(array('cronDelLogDays' => $this->cronDelLogDays, 'cronDelMovedThreadDays' => $this->cronDelMovedThreadDays, 'cronDelPmDays' => $this->cronDelPmDays, 'cronDelPmDaysExclUgrps' => $this->cronDelPmDaysExclUgrps, 'cronDelPmDaysExclUser' => $this->cronDelPmDaysExclUser, 'cronDelPmDaysExclFolder' => $this->cronDelPmDaysExclFolder, 'cronDelPmDaysShowInfo' => $this->cronDelPmDaysShowInfo, 'cronDelPmDaysShowExclInfo' => $this->cronDelPmDaysShowExclInfo, 'cronLogEnabled' => $this->cronLogEnabled, 'cronStatEnabled' => $this->cronStatEnabled, 'cronDbAnalyze' => $this->cronDbAnalyze, 'cronDbOptimize' => $this->cronDbOptimize, 'cronDbBackup' => $this->cronDbBackup, 'cronLogUseAdminEmail' => $this->cronLogUseAdminEmail, 'cronDelInactiveUserDays' => $this->cronDelInactiveUserDays, 'cronDelInactiveUserExclUgrps' => $this->cronDelInactiveUserExclUgrps, 'cronDelInactiveUserExcl' => $this->cronDelInactiveUserExcl, 'cronThreadArchiveDays' => $this->cronThreadArchiveDays, 'cronThreadArchiveSrc' => $src, 'cronThreadArchiveTgt' => $this->cronThreadArchiveTgt, 'cronThreadArchiveExclPolls' => $this->cronThreadArchiveExclPolls, 'cronThreadArchiveExclAnnouncement' => $this->cronThreadArchiveExclAnnouncement, 'cronThreadArchiveExclSticky' => $this->cronThreadArchiveExclSticky, 'cronThreadArchiveExclClosed' => $this->cronThreadArchiveExclClosed, 'cronThreadArchiveExclDeleted' => $this->cronThreadArchiveExclDeleted, 'cronCleanUpSubscriptions' => $this->cronCleanUpSubscriptions));
     WCF::getTPL()->assign('success', true);
 }