Development

Changeset 5347

You must first sign up to be able to contribute.

Changeset 5347

Show
Ignore:
Timestamp:
10/02/07 18:40:02 (1 year ago)
Author:
francois
Message:

sfSimpleForumPlugin Fixed missing mixin call

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfSimpleForumPlugin/trunk/lib/model/sfSimpleForumPostPeer.php

    r5287 r5347  
    173173  public static function doSelectJoinTopicAndForum(Criteria $c, $con = null) 
    174174  { 
    175     sfLogger::getInstance()->info('Getting Posts with topic and forum'); 
     175    foreach (sfMixer::getCallables('BasesfSimpleForumPostPeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) 
     176    { 
     177      call_user_func($callable, 'BasesfSimpleForumPostPeer', $c, $con); 
     178    } 
     179     
    176180    $c = clone $c; 
    177181