Changeset 15
- Timestamp:
- 01/03/06 01:16:37 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/core/jCoordinator.class.php
r12 r15 188 188 if($conf=='1') 189 189 $conf=$name.'.plugin.ini.php'; 190 191 $conf = parse_ini_file(JELIX_APP_CONFIG_PATH.$conf); 190 if(file_exists(JELIX_APP_CONFIG_PATH.$conf)){ 191 $conf = parse_ini_file(JELIX_APP_CONFIG_PATH.$conf); 192 }else{ 193 $conf = array(); 194 } 192 195 include( $this->pluginPathList[$name]); 193 196 $class= $name.'Plugin'; trunk/lib/jelix/core/jRequest.class.php
r1 r15 74 74 75 75 public function getParam($name, $defaultValue=null, $useDefaultIfEmpty=false){ 76 //var_dump( $this->params);77 76 78 //echo '#',$name,'#',$defaultValue,'#<br>';79 77 if(isset($this->params[$name])){ 80 78 if($useDefaultIfEmpty && trim($this->params[$name]) == ''){
