File tree Expand file tree Collapse file tree
OnTopic.Data.Sql.Database/Stored Procedures Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9595IF @TopicID IS NULL OR @OriginalLeft IS NULL OR @OriginalRight IS NULL
9696 BEGIN
9797 RAISERROR (
98- N ' The topic ("%n ") could not be found.' ,
98+ N ' The topic ("%d ") could not be found.' ,
9999 15 , -- Severity,
100100 1 , -- State,
101101 @TopicID
@@ -107,7 +107,7 @@ IF @TopicID IS NULL OR @OriginalLeft IS NULL OR @OriginalRight IS NULL
107107IF @ParentID IS NULL OR @InsertionPoint IS NULL
108108 BEGIN
109109 RAISERROR (
110- N ' The parent ("%n ") could not be found.' ,
110+ N ' The parent ("%d ") could not be found.' ,
111111 15 , -- Severity,
112112 1 , -- State,
113113 @ParentID
@@ -119,7 +119,7 @@ IF @ParentID IS NULL OR @InsertionPoint IS NULL
119119IF @InsertionPoint >= @OriginalLeft AND @InsertionPoint <= @OriginalRight
120120 BEGIN
121121 RAISERROR (
122- N ' A topic ("%n ") cannot be moved within a child of itself ("%n ").' ,
122+ N ' A topic ("%d ") cannot be moved within a child of itself ("%d ").' ,
123123 10 , -- Severity,
124124 1 , -- State,
125125 @TopicID,
You can’t perform that action at this time.
0 commit comments