Hmm, looks like a bug in the content_item.get_path implementation in Oracle. For the root folder, the folder_path is "" (empty).
In this case, item_id == root_folder_id.
Maybe content_item.get_path is only broken, when the item_id is the root_folder_id. If yes, then a possible fix is to use the following snippet in file-selector.tcl
set folder_path ""
if {$root_folder_id != $folder_id} {
set folder_path [::xo::db::sql::content_item get_path \
-item_id $folder_id \
-root_folder_id $root_folder_id]
}
Please let me know, what you find out.
Best regards
-gustaf neumann