This commit is contained in:
Kathy Ruffing 2008-10-03 11:23:31 +00:00
parent 3635a5e403
commit 27b8dc52f3

View File

@ -46,8 +46,8 @@ namespace vlnServerLibrary
private List<vlnObject> LoadChildren(vlnObject o)
{
o.Children = new List<vlnObject>();
LoadChildrenFromFolders(o);// TODO: Load children based upon directory lookup
LoadChildrenFromDB(o,LookUp(o,"select"));// TODO: Load children based upon select statement
LoadChildrenFromFolders(o);
LoadChildrenFromDB(o,LookUp(o,"select"));
return o.Children;
}
public string GetChildren(string sVlnObject)