Ignore:
Timestamp:
Sep 22, 2009 2:08:45 PM (4 years ago)
Author:
alec
Message:
  • allow setting login inputs size in skin template (#1486155)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_template.php

    r2796 r2980  
    10061006            $url = $_SERVER['QUERY_STRING']; 
    10071007 
    1008         $input_user   = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser', 'size' => 30) + $attrib); 
    1009         $input_pass   = new html_passwordfield(array('name' => '_pass', 'id' => 'rcmloginpwd', 'size' => 30) + $attrib); 
     1008        $input_user   = new html_inputfield(array('name' => '_user', 'id' => 'rcmloginuser') + $attrib); 
     1009        $input_pass   = new html_passwordfield(array('name' => '_pass', 'id' => 'rcmloginpwd') + $attrib); 
    10101010        $input_action = new html_hiddenfield(array('name' => '_action', 'value' => 'login')); 
    10111011        $input_tzone  = new html_hiddenfield(array('name' => '_timezone', 'id' => 'rcmlogintz', 'value' => '_default_')); 
     
    10271027        } 
    10281028        else if (empty($default_host)) { 
    1029             $input_host = new html_inputfield(array('name' => '_host', 'id' => 'rcmloginhost', 'size' => 30)); 
     1029            $input_host = new html_inputfield(array('name' => '_host', 'id' => 'rcmloginhost') + $attrib); 
    10301030        } 
    10311031 
Note: See TracChangeset for help on using the changeset viewer.