Ignore:
Timestamp:
Jan 30, 2008 9:33:49 AM (16 years ago)
Author:
quinn
Message:

General bug fixes. Backported email checking regex from codebase 2.1.2. Some css mods.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1dev/lib/TemplateGlue.inc.php

    r289 r308  
    169169            if ('allone' == $flag) {
    170170                // Print a cell with multidimentioal array checkboxes.
    171                 ?><td><label><input type="checkbox" name="dbcol[<?php echo $db_col; ?>][<?php echo $item; ?>]"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
     171                ?><td><label class="normal"><input type="checkbox" name="dbcol[<?php echo $db_col; ?>][<?php echo $item; ?>]"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
    172172                <?php
    173173             } else {
    174174                // Print a cell with basic named checkboxes.
    175                 ?><td><label><input type="checkbox" name="<?php echo $db_col; ?>[<?php echo $item; ?>]"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
     175                ?><td><label class="normal"><input type="checkbox" name="<?php echo $db_col; ?>[<?php echo $item; ?>]"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
    176176                <?php
    177177            }
     
    248248            }
    249249            // Print a cell with basic named checkboxes.
    250             ?><td><label><input type="radio" name="<?php echo $db_col; ?>" value="<?php echo $item ?>"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
     250            ?><td><label class="normal"><input type="radio" name="<?php echo $db_col; ?>" value="<?php echo $item ?>"<?php echo $checked; ?> />&nbsp;<?php echo oTxt($item); ?></label>&nbsp;</td>
    251251            <?php
    252252        }
Note: See TracChangeset for help on using the changeset viewer.