Changeset 6202
- Timestamp:
- 11/29/07 11:32:33 (2 years ago)
- Files:
-
- trunk/lib/view/sfPHPView.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/view/sfPHPView.class.php
r5090 r6202 28 28 29 29 /** 30 * Load core and standard helpers to be use in the template.30 * Loads core and standard helpers to be use in the template. 31 31 */ 32 32 protected function loadCoreAndStandardHelpers() … … 44 44 45 45 $helpers = array_unique(array_merge($core_helpers, $standard_helpers)); 46 47 // remove default Form helper if compat_10 is false 48 if (!sfConfig::get('sf_compat_10') && false !== $i = array_search('Form', $helpers)) 49 { 50 unset($helpers[$i]); 51 } 52 46 53 sfLoader::loadHelpers($helpers); 47 54 }

