Changeset 999
- Timestamp:
- 06/21/08 17:11:40 (2 months ago)
- Files:
-
- trunk/lib/jelix/tpl/jTpl.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/tpl/jTpl.class.php
r998 r999 65 65 $this->_vars[$name] = $value; 66 66 } 67 } 68 69 /** 70 * assign a value by reference in a template variable 71 * @param string $name the variable name 72 * @param mixed $value the value 73 * @since jelix 1.1 74 */ 75 public function assignByRef ($name, & $value){ 76 $this->_vars[$name] = &$value; 67 77 } 68 78
