| 102 | | if (isset($this->url['host']) === true && (eregi('([a-z0-9-]*)\.([a-z]{2,4})', $this->url['host']) == true || eregi('([0-9-]{1,3})\.([0-9-]{1,3})\.([0-9-]{1,3})\.([0-9-]{1,3})', $this->url['host']) == true || 'localhost' == $this->url['host'])) { |
|---|
| | 102 | if (isset($this->url['host']) === true |
|---|
| | 103 | && (eregi('([a-z0-9-]*)\.([a-z]{2,4})', $this->url['host']) == true |
|---|
| | 104 | || eregi('([0-9-]{1,3})\.([0-9-]{1,3})\.([0-9-]{1,3})\.([0-9-]{1,3})', $this->url['host']) == true |
|---|
| | 105 | || 'localhost' == $this->url['host'])) { |
|---|