File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
OnTopic.Data.Sql.Database/Stored Procedures Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 95
95
IF @TopicID IS NULL OR @OriginalLeft IS NULL OR @OriginalRight IS NULL
96
96
BEGIN
97
97
RAISERROR (
98
- N ' The topic ("%n ") could not be found.' ,
98
+ N ' The topic ("%d ") could not be found.' ,
99
99
15 , -- Severity,
100
100
1 , -- State,
101
101
@TopicID
@@ -107,7 +107,7 @@ IF @TopicID IS NULL OR @OriginalLeft IS NULL OR @OriginalRight IS NULL
107
107
IF @ParentID IS NULL OR @InsertionPoint IS NULL
108
108
BEGIN
109
109
RAISERROR (
110
- N ' The parent ("%n ") could not be found.' ,
110
+ N ' The parent ("%d ") could not be found.' ,
111
111
15 , -- Severity,
112
112
1 , -- State,
113
113
@ParentID
@@ -119,7 +119,7 @@ IF @ParentID IS NULL OR @InsertionPoint IS NULL
119
119
IF @InsertionPoint >= @OriginalLeft AND @InsertionPoint <= @OriginalRight
120
120
BEGIN
121
121
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 ").' ,
123
123
10 , -- Severity,
124
124
1 , -- State,
125
125
@TopicID,
You can’t perform that action at this time.
0 commit comments