Changeset 1088
- Timestamp:
- 11/11/2007 01:55:11 AM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/View.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/View.php
r1084 r1088 42 42 } 43 43 44 // Preload data45 44 if (is_array($data) AND ! empty($data)) 46 45 { 47 $this->data = $data; 46 // Preload data using array_merge, to allow user extensions 47 $this->data = array_merge($this->data, $data); 48 48 } 49 49
