Changeset 136
- Timestamp:
- 06/08/08 14:41:47 (2 months ago)
- Files:
-
- trunk/rapyd/components/dataform.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/rapyd/components/dataform.php
r133 r136 365 365 public function nest($field_id,$content) 366 366 { 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 370 374 }