Forum OpenACS Q&A: Re: cannot add group type

Collapse
2: Re: cannot add group type (response to 1)
Posted by Giampiero Recco on
From the cvs I have noticed that about two months ago,
donb as commited a change in this file:

openacs/openacs-4/packages/acs-subsite/tcl/package-procs-postgresql.xql

more porecisely, the change is at line 24:

from cvs version 1.12:

  upper(coalesce(attr.column_name, attr.attribute_name)) as attr_column_name,

to cvs version 1.13 (current is 1.14)

  coalesce(attr.column_name, attr.attribute_name) as attr_column_name,

reverting the change fixes the problem and now I can correctly create new group_types, but I don't know if there are other problems now.

does anyone know what problem could arise reverting this change?  Donb do you?

Thank you,
Giampiero