Forum OpenACS Q&A: Re: Re: Installing Contacts?

Collapse
Posted by Malte Sussdorff on
Well.... According to my sources (grep for dotlrn_communities_all), this part should not even be called. Maybe you had a broken .LRN installation). Here is the full code:

set dotlrn_installed_p [apm_package_installed_p dotlrn]
if { $dotlrn_installed_p } {
set filter_clause "and groups.group_id not in (select community_id from dotlrn_communities_all)"
} else {
set filter_clause ""
}

As this is the only place with this query, there is a clear check here. Obviously you could put this into a callback, so whoever has the time and the courage to do it is welcome to do so.