Quote:
Originally Posted by ownedbycats
Thanks
Also, another question:
For the user category question, I wanted specifically to find #fanficcat entries that are not assigned under Fanfiction.Fandoms.[subcategory]. Is what I came up with the best option for that? (If there's multiple entries, having one of them in the category but others not will make it not return a value.)
|
If#fanficcat is a single value then the most accurate method would be to check whether the full value is in the list. Something like
Code:
if ! '(^Fanfiction.Fandoms.' & #fanficcat & '$' ) inlist user_categories() then ...
If it is multivalued then either a loop or 2 lists and list_difference() would work.