Changeset 1085 for plugins/sfDoctrineActAsCommentablePlugin/trunk/modules/aComment/lib/BaseaCommentActions.class.php
- Timestamp:
- 04/28/10 12:10:44 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
plugins/sfDoctrineActAsCommentablePlugin/trunk/modules/aComment/lib/BaseaCommentActions.class.php
r1005 r1085 38 38 { 39 39 $this->forward404Unless($parentComment = $this->getRoute()->getObject()); 40 $form = new CommentPostForm( 41 $parentComment['commentable_model'], 42 $parentComment['commentable_id'] 43 ); 40 $form = new CommentPostForm(array(),array( 41 'commentable_model' => $parentComment['commentable_model'], 42 'commentable_id' => $parentComment['commentable_id'], 43 'namespace' => $parentComment['namespace'] 44 )); 44 45 if($request->isMethod('POST')) 45 46 {

