Show
Ignore:
Timestamp:
06/01/06 12:16:40 (6 years ago)
Author:
francois
Message:

refactored sidebar module and added latest comments in sidebar (+feed)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/apps/snippets/modules/snippet/actions/actions.class.php

    r2 r7  
    7676    $this->comments = $this->snippet->getSnippetComments(); 
    7777  } 
     78   
     79  public function executeShowByComment() 
     80  { 
     81    $this->snippet = SnippetSnippetPeer::retrieveByComment($this->getRequestParameter('id')); 
     82    $this->forward404Unless($this->snippet); 
     83 
     84    $this->comments = $this->snippet->getSnippetComments(); 
     85  }   
    7886 
    7987  public function executeDelete()