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
|
@ -16,5 +16,5 @@ using System.Reflection;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("3.0.1.472")]
|
[assembly: AssemblyVersion("3.0.1.473")]
|
||||||
[assembly: AssemblyFileVersion("3.0.1.472")]
|
[assembly: AssemblyFileVersion("3.0.1.473")]
|
||||||
|
|
|
@ -2836,7 +2836,7 @@ namespace ScrewTurn.Wiki {
|
||||||
List<string> tempPages = new List<string>(pages.Length);
|
List<string> tempPages = new List<string>(pages.Length);
|
||||||
|
|
||||||
for(int k = 0; k < pages.Length; k++) {
|
for(int k = 0; k < pages.Length; k++) {
|
||||||
if(pages[i].Provider == this) {
|
if(pages[k].Provider == this) {
|
||||||
tempPages.Add(pages[k].FullName);
|
tempPages.Add(pages[k].FullName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue