I'm trying to write a simple if statement to disallow the forum from displaying image attachments with the name "thumb.jpg".
$attachment[filename] returns the name of the image, so that's working just fine. However, the if statement below displays the text thumbnail at all times. What am I doing wrong here? (the code below is stated in one of the templates). I've just started looking into php
PHP Code:
<if $attachment[filename]="thumb.jpg">
thumbnail
</if>