diff options
author | xue <> | 2006-11-26 00:20:10 +0000 |
---|---|---|
committer | xue <> | 2006-11-26 00:20:10 +0000 |
commit | ac4ff394ca872f73fdb303f41edee09d12f962ec (patch) | |
tree | 957e7fbd34e9f9e55cc1900e32e6ebf5e436e52a | |
parent | cbe377adc3285cebc83a4980027b47bdc1c4a8a5 (diff) |
Fixed #467.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/TUrlMapping.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ Version 3.0.6 December 4, 2006 ============================== BUG: Ticket#442 - TPageService getBasePath in namespace form (Qiang) +BUG: Ticket#467 - typo in TUrlMapping.php (Qiang) BUG: TTableCell should render only when Text is not set and there's no child (Qiang) ENH: Ticket#446 - Added TMetaTagCollection.getMetaTagByID method (Qiang) CHG: Ticket#437 - __autoload is replaced by spl_autoload_register (Qiang) diff --git a/framework/Web/TUrlMapping.php b/framework/Web/TUrlMapping.php index 6df08c3f..6b47652c 100644 --- a/framework/Web/TUrlMapping.php +++ b/framework/Web/TUrlMapping.php @@ -334,7 +334,7 @@ class TUrlMappingPattern extends TComponent */
public function setRegularExpression($value)
{
- $this->_regexp;
+ $this->_regexp=$value;
}
/**
|