diff options
author | Christophe.Boulain <> | 2009-11-04 16:38:15 +0000 |
---|---|---|
committer | Christophe.Boulain <> | 2009-11-04 16:38:15 +0000 |
commit | 879cced5e01d43378065c938483b55a35ff10834 (patch) | |
tree | f4c756e7fdb3a6b0b359dbbe5814da0361996bb2 /framework/Base/TModel.php | |
parent | d69704df59e343a9e25e779548ae851b668e3e7f (diff) |
Minor corrections to avoid runtime notice with php 5.3, and function rename in TDbConnection
Diffstat (limited to 'framework/Base/TModel.php')
-rw-r--r-- | framework/Base/TModel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Base/TModel.php b/framework/Base/TModel.php index 492bcbd9..14368b33 100644 --- a/framework/Base/TModel.php +++ b/framework/Base/TModel.php @@ -33,7 +33,7 @@ abstract class TModel extends TComponent implements IteratorAggregate, ArrayAcce * @param string EventName * @param TEvent Event */ - public function raiseEvent($name, $event) + public function raiseEvent($name, $event, $param=null) { parent::raiseEvent($name, $event, new TEventParameter()); } |