View Single Post
Old 11-16-2004, 01:20 PM   #42
Topaz
Green Mole
 
Topaz's Avatar
 
Join Date: Oct 2004
Posts: 11
Little mistake

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
Topaz is offline   Reply With Quote