This commit is contained in:
Kathy Ruffing 2010-10-25 17:24:14 +00:00
parent 17476e9cdd
commit dd96fadf6d

View File

@ -925,7 +925,7 @@ namespace VEPROMS.CSLA.Library
get
{
ItemInfo temp = this;
while (temp.NextItems != null) temp = temp.NextItems[0];
while (temp.NextItems != null && temp.NextItems.Count > 0) temp = temp.NextItems[0];
return temp;
}
}