Comment 15 for bug 1331174

Revision history for this message
Kathy Lussier (klussier) wrote :

Blake,

I think I discovered what the problem is. On line 13755 of the seed data, I think you need an ending parentheses. Instead of:

oils_i18n_gettext(
         'circ.longoverdue.assess_billing',
         'When an item is marked long overdue a bill for the item will be ' ||
                 'assesed unless this setting is false. The default is true. If false ' ||
                 'void overdue setting will be ignored and processing fee will be ignored',
         'coust',
         'description'
     ), (

It would be:

oils_i18n_gettext(
         'circ.longoverdue.assess_billing',
         'When an item is marked long overdue a bill for the item will be ' ||
                 'assesed unless this setting is false. The default is true. If false ' ||
                 'void overdue setting will be ignored and processing fee will be ignored',
         'coust',
         'description'
    )
), (

I was going to update it myself, but the branch has some conflicts that I didn't feel comfortable resolving.

If you push out a new branch with the change and the conflicts resolved, I can load it on a test VM. I would love to see this code make it into 2.9!

Kathy