Changeset 1013bad in github


Ignore:
Timestamp:
Dec 10, 2010 7:47:14 AM (2 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
0da9021
Parents:
935d1a2
Message:
  • Allow setting _user and _host via GET parameters on login screen (#1486993)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_template.php

    r1cca4fb r1013bad  
    10991099 
    11001100        $table->add('title', html::label('rcmloginuser', Q(rcube_label('username')))); 
    1101         $table->add(null, $input_user->show(get_input_value('_user', RCUBE_INPUT_POST))); 
     1101        $table->add(null, $input_user->show(get_input_value('_user', RCUBE_INPUT_GPC))); 
    11021102 
    11031103        $table->add('title', html::label('rcmloginpwd', Q(rcube_label('password')))); 
     
    11071107        if (is_object($input_host) && !$hide_host) { 
    11081108            $table->add('title', html::label('rcmloginhost', Q(rcube_label('server')))); 
    1109             $table->add(null, $input_host->show(get_input_value('_host', RCUBE_INPUT_POST))); 
     1109            $table->add(null, $input_host->show(get_input_value('_host', RCUBE_INPUT_GPC))); 
    11101110        } 
    11111111 
Note: See TracChangeset for help on using the changeset viewer.