Code

Updated gofoMacro.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 22 Feb 2008 14:10:51 +0000 (14:10 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 22 Feb 2008 14:10:51 +0000 (14:10 +0000)
-Removed length check.

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

plugins/gofon/macro/class_gofonMacro.inc

index 88a85fe4e1a6edbd035e347c3bcd3206a50a1e48..9ea248a00b97805f640b5bb1abea0306d10d0be5 100644 (file)
@@ -410,12 +410,6 @@ class macro extends plugin
         }
       }
     }
-
-    /* Macro content must be smaller than 100 lines */
-    if(count(split("\n",$this->goFonMacroContent))>100){
-      $message[] = _("Makro length must be lower than 100 lines");
-    }
-
     return $message;
   }