This is a notice to 3rd party developers that extend AMS...
As per title, the method
	
	
	
		
				
			As per title, the method
canViewArticleAttachments in the Article Item Entity has been deprecated and will be permanently removed in AMS 3.0. 
		PHP:
	
	    /**
     * @deprecated Use canViewAttachments instead
     *
     */
    public function canViewArticleAttachments()
    {
        return $this->hasPermission('viewArticleAttach');
    }
	
		
		Upvote
		0