Hi, just realized that on line 491 and 492 there is a small mistake
Code:
<input type="radio" <?php if(LINK_TARGET=="_top") echo("checked"); ?> name="replace" value="_top" /><?php phpdigPrnMsg('results_new'); ?>
<input type="radio" <?php if(LINK_TARGET=="_blank") echo("checked"); ?> name="replace" value="_blank" /><?php phpdigPrnMsg('results_same'); ?>
it should read
Code:
<input type="radio" <?php if(LINK_TARGET=="_top") echo("checked"); ?> name="replace" value="_top" /><?php phpdigPrnMsg('results_same'); ?>
<input type="radio" <?php if(LINK_TARGET=="_blank") echo("checked"); ?> name="replace" value="_blank" /><?php phpdigPrnMsg('results_new'); ?>
results_same and results_new has been mixed up.
Topaz