Ticket #2808: build_model.patch
| File build_model.patch, 2.0 kB (added by manickam, 1 year ago) |
|---|
-
lib/command/sfSymfonyCommandApplication.class.php
old new 111 111 // include path 112 112 set_include_path( 113 113 sfConfig::get('sf_lib_dir').PATH_SEPARATOR. 114 sfConfig::get('sf_app_lib_dir').PATH_SEPARATOR.115 sfConfig::get('sf_model_dir').PATH_SEPARATOR.114 (($tmp = sfConfig::get('sf_app_lib_dir', false)) ? ($tmp.PATH_SEPARATOR) : ''). 115 (($tmp = sfConfig::get('sf_model_dir', false)) ? ($tmp.PATH_SEPARATOR) : ''). 116 116 get_include_path() 117 117 ); 118 118 119 } 119 120 120 121 /** -
lib/plugins/sfPropelPlugin/lib/vendor/phing/Phing.php
old new 893 893 $path = str_replace('/', DIRECTORY_SEPARATOR, $path); 894 894 895 895 foreach (self::$importPaths as $prefix) { 896 $foo_path = $prefix . DIRECTORY_SEPARATOR. $path;896 $foo_path = $prefix . (( $prefix !== '') ? DIRECTORY_SEPARATOR : '') . $path; 897 897 if (file_exists($foo_path)) { 898 898 return $foo_path; 899 899 } -
lib/util/sfFinder.class.php
old new 347 347 $numargs = count($arg_list); 348 348 } 349 349 350 if( $arg_list === false || $arg_list[0] === false ) 351 { 352 return array(); 353 } 354 350 355 for ($i = 0; $i < $numargs; $i++) 351 356 { 352 357 $real_dir = realpath($arg_list[$i]);