Changeset 176


Ignore:
Timestamp:
Jun 21, 2006 6:25:56 AM (18 years ago)
Author:
scdev
Message:

Q - added some sc-small classes to form inputs.

Location:
trunk/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Captcha.inc.php

    r136 r176  
    147147
    148148        // Number must be an array of strings.
    149         $num = preg_split('// ', strval($num), -1, PREG_SPLIT_NO_EMPTY);
     149        $num = preg_split('//', strval($num), -1, PREG_SPLIT_NO_EMPTY);
    150150
    151151        // All chars must be same height.
     
    186186        $hash = $this->_getMD5key($this->random_number);
    187187        ?>
    188         <input name="sc-captcha-input" id="sc-captcha-input" type="text" />
     188        <input name="sc-captcha-input" id="sc-captcha-input" class="sc-small" type="text" />
    189189        <input name="sc-captcha-hash" id="sc-captcha-hash" type="hidden" value="<?php echo $hash ?>" />
    190190        <?php
  • trunk/lib/SpellCheck.inc.php

    r146 r176  
    356356                ?>
    357357                </select>
    358                 <input type="text" name="spelling_corrections[<?php echo $form_name ?>][<?php echo $i ?>]" value="<?php echo $original_word ?>" size="20" />
     358                <input type="text" name="spelling_corrections[<?php echo $form_name ?>][<?php echo $i ?>]" value="<?php echo $original_word ?>" class="sc-small" />
    359359                <?php if ($this->_use_personal_wordlist) { ?>
    360360                <input name="save_to_personal_wordlist[]" type="checkbox" value="<?php echo $i ?>" /><?php echo _("Learn spelling") ?>
Note: See TracChangeset for help on using the changeset viewer.