Index: friendlist_blocks.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/friendlist/friendlist_blocks/Attic/friendlist_blocks.module,v
retrieving revision 1.1.2.17
diff -r1.1.2.17 friendlist_blocks.module
89a90,91
>         $block = array();
> 
92c94
<           $subject = t('People you might know');
---
>           $block['subject'] = t('People you might know');
94c96
<           $output = friendlist_blocks_contents_0();
---
>           $block['output'] = friendlist_blocks_contents_0();
101,102c103,104
<             $subject = t('You and !user', array('!user' => theme('username', $u)));
<             $output = friendlist_ui_user_links($u);
---
>             $block['subject'] = t('You and !user', array('!user' => theme('username', $u)));
>             $block['output'] = friendlist_ui_user_links($u);
112,114c114,116
< 												|| ($u = menu_get_object('user') && $user->uid != $u->uid)) {
<               $subject = t('Common relations');
<               $output = friendlist_blocks_contents_2($u);
---
> 	     	    			    	     			      		   || ($u = menu_get_object('user') && $user->uid != $u->uid)) {
>               $block['subject'] = t('Common relations');
>               $block['output'] = friendlist_blocks_contents_2($u);
118,120d119
< 
<         $block['content'] = $output;
<         $block['subject'] = $subject;
