Index: openacs-4/packages/faq-portlet/www/faq-portlet-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/faq-portlet/www/Attic/faq-portlet-oracle.xql,v diff -u -r1.9 -r1.10 --- openacs-4/packages/faq-portlet/www/faq-portlet-oracle.xql 4 Jun 2002 00:03:44 -0000 1.9 +++ openacs-4/packages/faq-portlet/www/faq-portlet-oracle.xql 4 Dec 2002 09:53:40 -0000 1.10 @@ -6,7 +6,7 @@ select acs_objects.context_id as package_id, - acs_object.name(acs_objects.context_id) as parent_name, + acs_object.name(apm_package.parent_id(acs_objects.context_id)) as parent_name, (select site_node.url(site_nodes.node_id) from site_nodes where site_nodes.object_id = acs_objects.context_id) as url, @@ -15,8 +15,9 @@ from faqs, acs_objects where faqs.faq_id = acs_objects.object_id + and faqs.disabled_p <> 't' and acs_objects.context_id in ([join $list_of_package_ids ", "]) - order by parent_name + order by lower(faq_name)