Code

Apply fix for #4271
authorpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 27 Apr 2010 13:50:58 +0000 (13:50 +0000)
committerpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 27 Apr 2010 13:50:58 +0000 (13:50 +0000)
Increase minute range to 120 and pc range to 100

git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@17887 594d385d-05f5-0310-b6e9-bd551577e9d8

trunk/gosa-plugins/goto/addons/goto/events/class_DaemonEvent.inc

index 2085473ab5ae94d4b1bea0e720b673e23f88b376..6268d9c0eb24fd1fffe0f5a875b0ecbeb58da89a 100644 (file)
@@ -169,10 +169,10 @@ class DaemonEvent
     
     $opts_minutes = array();
     $opts_operations = array();
-    foreach(range(0,60) as $i) {
+    foreach(range(0,120) as $i) {
       $opts_minutes[$i] = $i;
     }
-    foreach(range(1,99) as $i) {
+    foreach(range(1,100) as $i) {
       $opts_operations[$i] = $i;
     }