To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
04/28/10 12:10:44 (2 years ago)
Author:
dordille
Message:

Changes commenting actions for cohorts.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/sfDoctrineActAsCommentablePlugin/trunk/modules/aComment/lib/BaseaCommentActions.class.php

    r1005 r1085  
    3838  { 
    3939    $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    )); 
    4445    if($request->isMethod('POST')) 
    4546    {