forked from GNUsocial/gnu-social
		
	Generated an extra class on bookmark notice <li>s
This commit is contained in:
		@@ -648,6 +648,27 @@ class BookmarkPlugin extends Plugin
 | 
			
		||||
        return true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Output our CSS class for bookmark notice list elements
 | 
			
		||||
     *
 | 
			
		||||
     * @param NoticeListItem $nli The item being shown
 | 
			
		||||
     *
 | 
			
		||||
     * @return boolean hook value
 | 
			
		||||
     */
 | 
			
		||||
 | 
			
		||||
    function onStartOpenNoticeListItemElement($nli)
 | 
			
		||||
    {
 | 
			
		||||
        $nb = Bookmark::getByNotice($nli->notice);
 | 
			
		||||
        if (!empty($nb)) {
 | 
			
		||||
            $id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id;
 | 
			
		||||
            $nli->out->elementStart('li', array('class' => 'hentry notice bookmark',
 | 
			
		||||
                                                 'id' => 'notice-' . $id));
 | 
			
		||||
            Event::handle('EndOpenNoticeListItemElement', array($nli));
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
        return true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Save a remote bookmark (from Salmon or PuSH)
 | 
			
		||||
     *
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user