private static string GetAuthorProfession(yaf_Message item)
        {
            var authorData = DBCache.GetUserPersonalData(item.UserID, buhOnlineContext);

            return(authorData == null || authorData.Profession == null ? "" : authorData.Profession.ToLower());
        }