If I recall correctly, the OR should be inside of your truthy test, so it should look something like if({test condition 1}OR{test condition 2};{result if ture};{result if false}).
Personally when I make conditions like that, I will create a set variable module right before it, and make each condit...