Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs/Zend
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2011-01-12 01:13:19 +0300
committerrobocoder <anthon.pang@gmail.com>2011-01-12 01:13:19 +0300
commit660f69f03cd403f07b4d9855d93ceb5289dff57e (patch)
treed06a5f5ddf7e1103fb9e83e2d81f1e502e3b03d0 /libs/Zend
parentd76a68f7cbd9934ff025750b0d2103c6fa0e7f68 (diff)
refs #1765 - typo
git-svn-id: http://dev.piwik.org/svn/trunk@3708 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/Zend')
-rw-r--r--libs/Zend/Validate/Hostname.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/Zend/Validate/Hostname.php b/libs/Zend/Validate/Hostname.php
index ba93d98627..05b090c4b9 100644
--- a/libs/Zend/Validate/Hostname.php
+++ b/libs/Zend/Validate/Hostname.php
@@ -566,7 +566,7 @@ class Zend_Validate_Hostname extends Zend_Validate_Abstract
$regexChars = array(0 => '/^[a-z0-9\x2d]{1,63}$/i');
if ($this->_options['idn'] && isset($this->_validIdns[strtoupper($this->_tld)])) {
if (is_string($this->_validIdns[strtoupper($this->_tld)])) {
- $regexChars += include(dirname(__FILE__) . DIR_SEPARATOR . $this->_validIdns[strtoupper($this->_tld)]);
+ $regexChars += include(dirname(__FILE__) . DIRECTORY_SEPARATOR . $this->_validIdns[strtoupper($this->_tld)]);
} else {
$regexChars += $this->_validIdns[strtoupper($this->_tld)];
}