diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/TUrlMapping.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ BUG: Issue #413 - TActiveDatePicker does not fire TCallbackClientSide's events ( BUG: Issue #414 - ActiveDatagrid's pager does not fire TCallbackClientSide's events (ctrlaltca) BUG: Issue #415 - prado-cli throws an error if the application is making use of THttpSession (ctrlaltca) BUG: Issue #416 - TJsonService reports the wrong content-type (ctrlaltca) +BUG: Issue #418 - Can't get parameters when friendly url enabled with UrlFormat=Path (sampsa.saarela) EHN: Permit to change the default cipher in TSecurityManager::setEncryption(); changed the default cipher from 3DES to AES256 (ctrlaltca) EHN: Use php's hash_hmac() when available in TSecurityManager, and permit the use of all algorithms supported by php (ctrlaltca) diff --git a/framework/Web/TUrlMapping.php b/framework/Web/TUrlMapping.php index 19891da1..93659fb8 100644 --- a/framework/Web/TUrlMapping.php +++ b/framework/Web/TUrlMapping.php @@ -694,7 +694,7 @@ class TUrlMappingPattern extends TComponent if ($this->_separator==='/') { while($key=array_shift($params)) - $matches2[$key]=($value=array_shift($params)) ? $value : ''; + $matches[$key]=($value=array_shift($params)) ? $value : ''; } else { |