Might be able to move this to the base



  • Telligent...

      /// <summary>
      /// Returns the time of the last modified post. Might be able to move this to the base
      /// </summary>
      protected override DateTime Modified
      {
       get
       {
        if(posts != null && posts.Count > 0)
        {
         return ((WeblogPost) (posts[posts.Count -1])).BloggerTime;
        }
        else
         return new DateTime(2004,1,1);
       }
      }


Log in to reply