Code

Updated comment handling
[gosa.git] / include / sieve / class_sieveElement_Block_Start.inc
index 799f1fa84d77bccedfaddce7a72c252bdec0062b..e001cdc58db89483950c8728124b1494442a5778 100644 (file)
@@ -2,6 +2,13 @@
 
 class sieve_block_start 
 {
+  var $object_id= -1;
+  
+  function sieve_block_start($data = NULL,$object_id)
+  {
+    $this->object_id = $object_id;
+  }
+
   function execute()
   {
     $smarty = get_smarty();
@@ -19,7 +26,7 @@ class sieve_block_start
 
   function get_sieve_script_part()
   {
-    return("{\n");
+    return("{");
   } 
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: