Changeset 133
- Timestamp:
- 06/08/08 02:22:05 (2 months ago)
- Files:
-
- trunk/rapyd/components/dataform.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/rapyd/components/dataform.php
r83 r133 347 347 // -------------------------------------------------------------------- 348 348 349 function save_button($config=null)349 public function save_button($config=null) 350 350 { 351 351 $caption = (isset($config['caption'])) ? $config['caption'] : rpd::lang('btn.save'); … … 361 361 } 362 362 363 // -------------------------------------------------------------------- 364 365 public function nest($field_id,$content) 366 { 367 $nesting_point = 'id="'.$field_id.'">'; 368 $this->output = str_replace($nesting_point,$nesting_point.$content,$this->output); 369 } 363 370 }