}
public Collection<Organisation> getAllOrgs()
{
Collection<Organisation> orgs = CannedQueries.allOrgs(true, false);
Organisation userAddedOrg = (Organisation)getSessionObject(SessionConstants.SIGNUP_ADDED_ORG);
if (userAddedOrg != null) {
orgs.add(userAddedOrg);
}
return orgs;