fixed not settable minutes for sheduling backups

This commit is contained in:
Ralf Becker 2006-11-06 13:30:40 +00:00
parent cc02f439d7
commit 92474ad4ca
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@
} }
} }
// input-fields to create a new scheduled backup // input-fields to create a new scheduled backup
foreach($times=array('year'=>'*','month'=>'*','day'=>'*','dow'=>'2-6','hour'=>3,'minute'=>0) as $name => $default) foreach($times=array('year'=>'*','month'=>'*','day'=>'*','dow'=>'2-6','hour'=>3,'min'=>0) as $name => $default)
{ {
$setup_tpl->set_var($name,'<input name="times['.$name.']" size="5" value="'.$default.'" />'); $setup_tpl->set_var($name,'<input name="times['.$name.']" size="5" value="'.$default.'" />');
} }

View File

@ -43,7 +43,7 @@
<td>{day}</td> <td>{day}</td>
<td>{dow}</td> <td>{dow}</td>
<td>{hour}</td> <td>{hour}</td>
<td>{minute}</td> <td>{min}</td>
<td>{next_run}</td> <td>{next_run}</td>
<td>{actions}</td> <td>{actions}</td>
</tr> </tr>