YAFLogo

Posted by: mtsmith - Tuesday, 28 February 2012 18:35:06
In procedures.sql the following method is missing a parameter to the board_create method which causes installation to fail create procedure [{databaseOwner}].[{objectQualifier}system_initialize]( @Name nvarchar(50), @TimeZone int, @Culture varchar(10), @LanguageFile nvarchar(50), @ForumEmail nvarchar(50), @SmtpServer nvarchar(50), @User nvarchar(255), @UserEmail nvarchar(255), @Userkey nvarchar(64), @RolePrefix nvarchar(255), @UTCTIMESTAMP datetime ) as begin DECLARE @tmpValue AS nvarchar(100) -- initalize required 'registry' settings EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'version','1' EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'versionname','1.0.0' SET @tmpValue = CAST(@TimeZone AS nvarchar(100)) EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'timezone', @tmpValue EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'culture', @Culture EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'language', @LanguageFile EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'smtpserver', @SmtpServer EXEC [{databaseOwner}].[{objectQualifier}registry_save] 'forumemail', @ForumEmail -- initalize new board EXEC [{databaseOwner}].[{objectQualifier}board_create] @Name, @Culture, @LanguageFile, '','',@User,@UserEmail,@UserKey,1,@RolePrefix[b],@UTCTIMESTAMP[/b] end GO P.S. is http://tracker.yetanotherforum.net/ no longer being used?

Posted by: bbobb - Tuesday, 28 February 2012 18:59:35
Thanks for the report the fix is merged to the repository just now.