/**
  * Add sidebar conditions to collection
  *
  * @param Mage_Wishlist_Model_Mysql4_Product_Collection $collection
  * @return Mage_Wishlist_Block_Customer_Wishlist
  */
 protected function _prepareCollection($collection)
 {
     $collection->setPage(1, 3);
     $collection->addAttributeToSort('added_at', 'desc');
     return $this;
 }