Changeset 136

Show
Ignore:
Timestamp:
06/08/08 14:41:47 (2 months ago)
Author:
felix
Message:

fix on nest() function

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/rapyd/components/dataform.php

    r133 r136  
    365365  public function nest($field_id,$content) 
    366366  { 
    367     $nesting_point = 'id="'.$field_id.'">'; 
    368     $this->output = str_replace($nesting_point,$nesting_point.$content,$this->output); 
    369   } 
     367    if ($this->output != "") 
     368    { 
     369      $nesting_point = 'id="'.$field_id.'">'; 
     370      $this->output = str_replace($nesting_point,$nesting_point.$content,$this->output); 
     371    } 
     372  } 
     373   
    370374}