@Snow Sciles and @eschwartz: you might want to use strcmp instead of contains. Contains takes an regexp and can match substrings, while strcmp does an exact match. For example, the contains in that template would match "Temp Fanfiction Library", which you might not want.
Alternatively, use anchors in the regexp pattern given to "contains", as in "^Fanfiction Library$".
|