Forum OpenACS Development: small fix

Error in include template "/var/www/openacs/packages/openacs-bootstrap3-theme/resources/templates/packages/forums/lib/search/search-form": can't read "form:id": no such variable
Collapse
Posted by Tracy Adams on
I believe the following query in Andrei's post:
update users set authority_id = (
       select authority_id
         from auth_authorities
        where enabled_p = 't'
) and user_id = your_user_id_here;
should be
update users set authority_id = (
       select authority_id
         from auth_authorities
        where enabled_p = 't'
) where user_id = your_user_id_here;