Skip to content

Commit

Permalink
forgot to add the replace tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Oct 28, 2013
1 parent 28b66a7 commit 4fe3c1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yaf_dnn/Installation/02.00.00.SqlDataProvider
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ CREATE PROCEDURE {databaseOwner}{objectQualifier}yaf_GetReadAccessListForForum
@ForumID int
AS
select fa.GroupID, GroupName = g.Name, AccessMaskName = am.Name, am.Flags
from [yaf].[dbo].[yaf_ForumAccess] fa
Inner join [yaf].[dbo].[yaf_AccessMask] am
from {databaseOwner}{objectQualifier}yaf_ForumAccess fa
Inner join {databaseOwner}{objectQualifier}yaf_AccessMask am
on (fa.AccessMaskID = am.AccessMaskID)
inner join [yaf].[dbo].[yaf_Group] g
inner join {databaseOwner}{objectQualifier}yaf_Group g
on (fa.GroupID = g.GroupID)
where fa.ForumID = @ForumID
GO

0 comments on commit 4fe3c1c

Please sign in to comment.