YAFLogo

Posted by: continienzo - Sunday, 19 April 2009 12:32:17
Hi, after the last updates i see that solution wont compile... There is an error in dbaccess.cs: [code] public string Message { get; set; }[/code] Error 26 'YAF.Classes.Data.YafDBConnManager.YafDBConnInfoMessageEventArgs.Message.get' must declare a body because it is not marked abstract or extern D:\Siti e Applicazioni\NT Forum\Yaf Forum NT - Copia\YAF.Classes\YAF.Classes.Data\DBAccess.cs 38 5 YAF.Classes.Data Error 27 'YAF.Classes.Data.YafDBConnManager.YafDBConnInfoMessageEventArgs.Message.set' must declare a body because it is not marked abstract or extern D:\Siti e Applicazioni\NT Forum\Yaf Forum NT - Copia\YAF.Classes\YAF.Classes.Data\DBAccess.cs 39 5 YAF.Classes.Data I corrected this as following: [code] public string Message { get { return null; } set { Message = null; } }[/code] Also in the new "search all user posts" funtions in profile.ascx there is a problem in passing the querystring to the searh form cause it wont replace the "&": [code]SearchUser.NavigateUrl = YAF.Classes.Utils.YafBuildLink.GetLink( YAF.Classes.Utils.ForumPages.search, "postedby={0}", userData.Membership.UserName );[/code] this need to be changed in : [code]SearchUser.NavigateUrl = YAF.Classes.Utils.YafBuildLink.GetLinkNotEscaped( YAF.Classes.Utils.ForumPages.search, "postedby={0}", userData.Membership.UserName );[/code] Kinds regards Enzo

Posted by: Jaben - Tuesday, 21 April 2009 04:04:28
thanks Enzo. Fixed and committed.