anyone know why this is giving me a parse error? <?php if ($photos_target == _self || !$photos_target) { print "checked"; } ?>
argh.
write it like this:
<?php if ($photos_target == "_self" || !$photos_target) { print "checked"; } ?>