diff options
| author | David <ottodavid@gmx.net> | 2015-08-10 19:50:41 +0200 |
|---|---|---|
| committer | David <ottodavid@gmx.net> | 2015-08-11 08:34:39 +0200 |
| commit | 606874e9a883ae547df198498fce6fca7b735466 (patch) | |
| tree | 2f9e772926ee22e715411e79acd8e0adfe1de2cd /framework/Web/TUrlMappingPattern.php | |
| parent | ac81ab6d556ce52e98acf636bbcd8ad4d60ecf4e (diff) | |
Fix TProperyValue::ensureEnum and some unit tests class names
Diffstat (limited to 'framework/Web/TUrlMappingPattern.php')
| -rw-r--r-- | framework/Web/TUrlMappingPattern.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/TUrlMappingPattern.php b/framework/Web/TUrlMappingPattern.php index 3d370940..cb28a278 100644 --- a/framework/Web/TUrlMappingPattern.php +++ b/framework/Web/TUrlMappingPattern.php @@ -435,7 +435,7 @@ class TUrlMappingPattern extends \Prado\TComponent */ public function setUrlFormat($value) { - $this->_urlFormat=TPropertyValue::ensureEnum($value,'THttpRequestUrlFormat'); + $this->_urlFormat=TPropertyValue::ensureEnum($value,'Prado\\Web\\THttpRequestUrlFormat'); } /** @@ -473,7 +473,7 @@ class TUrlMappingPattern extends \Prado\TComponent */ public function setSecureConnection($value) { - $this->_secureConnection = TPropertyValue::ensureEnum($value, 'TUrlMappingPatternSecureConnection'); + $this->_secureConnection = TPropertyValue::ensureEnum($value, 'Prado\\Web\\TUrlMappingPatternSecureConnection'); } /** |
