diff options
author | Christophe.Boulain <> | 2009-01-29 07:43:23 +0000 |
---|---|---|
committer | Christophe.Boulain <> | 2009-01-29 07:43:23 +0000 |
commit | c8861d5cfc5779d2c7edd450a66d60b590364fc5 (patch) | |
tree | 9ee3a51aac2c8fc270ba0a836ca900f950cbc090 | |
parent | f75a6c36cbc14ee4c80b667161bdc0a2b48ca6d7 (diff) |
Fixed Issue#107
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Data/TDbConnection.php | 2 | ||||
-rw-r--r-- | framework/PradoBase.php | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ Version 3.1.5 (to be released) ============================== BUG: URL wildcard patterns didn't work with subfolders +BUG: Issue~107 - typo in TDbConnection::getCharset() (Christophe) Version 3.1.4 January 11, 2009 ============================== diff --git a/framework/Data/TDbConnection.php b/framework/Data/TDbConnection.php index 259ca7b7..26d61883 100644 --- a/framework/Data/TDbConnection.php +++ b/framework/Data/TDbConnection.php @@ -267,7 +267,7 @@ class TDbConnection extends TComponent */
public function getCharset ()
{
- return $this>_charset;
+ return $this->_charset;
}
/**
diff --git a/framework/PradoBase.php b/framework/PradoBase.php index ea6b9737..c2d73b16 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -66,7 +66,7 @@ class PradoBase */ public static function getVersion() { - return '3.1.4'; + return '3.1.5a'; } /** |