I wonder what happens if you leave the rootfolder in the site_template empty. Basically the mechanism in prepare() does the following:
//if empty or null string, set store default
//folder as root
if (foldernames[0] == null || foldernames[0].equals("")) {
m_RootFolder = m_Store.getDefaultFolder();
} else {
m_RootFolder = m_Store.getFolder(foldernames[0]);
}
This means it is not necessarily a bug, rather a config issue.
Dieter
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=36782
Leonard,
I wonder what happens if you leave the rootfolder in the site_template empty. Basically the mechanism in prepare() does the following:
//if empty or null string, set store default
//folder as root
if (foldernames[0] == null || foldernames[0].equals("")) {
m_RootFolder = m_Store.getDefaultFolder();
} else {
m_RootFolder = m_Store.getFolder(foldernames[0]);
}
This means it is not necessarily a bug, rather a config issue.
Dieter
Logged In: YES
user_id=620875
Sure, with a blank root folder, I can get in.
Sorry, I suppose this should be in the task list for 0.9.7?
==Leonard