Fixed bug in ModifyNavigationPath method of local pages provider.
This commit is contained in:
parent
71637365c1
commit
f5d5317719
2 changed files with 3 additions and 3 deletions
|
@ -2836,7 +2836,7 @@ namespace ScrewTurn.Wiki {
|
|||
List<string> tempPages = new List<string>(pages.Length);
|
||||
|
||||
for(int k = 0; k < pages.Length; k++) {
|
||||
if(pages[i].Provider == this) {
|
||||
if(pages[k].Provider == this) {
|
||||
tempPages.Add(pages[k].FullName);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue