summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c285245)
raw | patch | inline | side by side (parent: c285245)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Jun 2005 09:32:03 +0000 (09:32 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Jun 2005 09:32:03 +0000 (09:32 +0000) |
plugins/gofon/macro/class_gofonMacro.inc | patch | blob | history |
index 01024676f90dc37a9163a010cd6ac9e5751aa0c2..30bfc156db9a476ca6e112d81f6b4ec5a34169d3 100755 (executable)
if(($this->cn != strtolower($this->cn))||(empty($this->cn))){
$message[] = "The attribute 'cn' must be lowercase and a least one char.";
}
+
+ if(count(split("\n",$this->goFonMacroContent))>100){
+ $message[] = _("Makro length must be lower than 100 lines");
+ }
+
return $message;
}