BlogEngine.Core.Json.JsonPosts.GetAuthor C# (CSharp) Method

GetAuthor() static private method

static private GetAuthor ( string author ) : string
author string
return string
        static string GetAuthor(string  author)
        {
            if (string.IsNullOrEmpty(author))
                return string.Empty;
            return string.Format("<a href='#' onclick=\"ChangePostFilter('Author','{0}','')\">{0}</a>", author);
        }