Thanks, I thought it was something like changing the
Y in the lines to a
N.
Is it possible to combine these two rules as well:
Code:
program:
test(
and(
contains(field('#readinglist'), '^interesting$', 'y', ''),
or(
contains(field('#ships'), "Angela Montenegro/Jack Hodgins", 'y', ''),
contains(field('#ships'), "Temperance Brennan/Seeley Booth", 'y', '')
),
),
'ships (crime).png',
''
)
with this one:
Code:
program:
test(
and(
contains(field('#reading_list'), 'interesting', 'y', ''),
or(
contains(field('#ships'), "Angela Montenegro/Jack Hodgins", 'y', ''),
contains(field('#ships'), "Temperance Brennan/Seeley Booth", 'y', '')
)
),
'ships (crime).png',
'never.png'
)
Thanks