| 144 | | return; |
|---|
| 145 | | } |
|---|
| 146 | | /* we can not use isDefined method as it always returns true */ |
|---|
| 147 | | /* let's get key's value and return if it's empty, false or null */ |
|---|
| 148 | | /*if(($this->pear_config->get("web_dir") === '') |
|---|
| 149 | | || ($this->pear_config->get("web_dir") === false) |
|---|
| 150 | | || ($this->pear_config->get("web_dir") === null)) |
|---|
| 151 | | { |
|---|
| 152 | | return; |
|---|
| 153 | | } |
|---|
| 154 | | */ |
|---|
| | 144 | /* we can not use isDefined method as it always returns true */ |
|---|
| | 145 | /* let's get key's value and return if it's empty, false or null */ |
|---|
| | 146 | if(($this->pear_config->get("web_dir") === '') |
|---|
| | 147 | || ($this->pear_config->get("web_dir") === false) |
|---|
| | 148 | || ($this->pear_config->get("web_dir") === null)) |
|---|
| | 149 | { |
|---|
| | 150 | return; |
|---|
| | 151 | } |
|---|
| | 152 | |
|---|
| | 153 | $this->web_dir_hack = $this->pear_config->get("web_dir"); |
|---|
| | 154 | } |
|---|