forked from GNUsocial/gnu-social
		
	Clean up of delete links when not logged in
darcs-hash:20080720094954-533db-1096bf464e37a9c380afc15ac1b33b1f2f43cf91.gz
This commit is contained in:
		@@ -66,6 +66,8 @@ class StreamAction extends Action {
 | 
			
		||||
		if (common_logged_in()) {
 | 
			
		||||
			$user = common_current_user();
 | 
			
		||||
			$user_profile = $user->getProfile();
 | 
			
		||||
		} else {
 | 
			
		||||
			$user_profile = false;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		# XXX: RDFa
 | 
			
		||||
@@ -118,7 +120,7 @@ class StreamAction extends Action {
 | 
			
		||||
		common_raw('→');
 | 
			
		||||
		common_element_end('a');
 | 
			
		||||
		common_element_end('p');
 | 
			
		||||
                if ($notice->profile_id == $user_profile->id) {
 | 
			
		||||
		if ($user_profile && $notice->profile_id == $user_profile->id) {
 | 
			
		||||
			$deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
 | 
			
		||||
			common_element('a', array('class' => 'deletenotice',
 | 
			
		||||
									 'href' => $deleteurl),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user