URL:
  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=14144>

                 Summary: User/Password for database setup will not be used
correctly
                 Project: phpGroupWare
            Submitted by: None
            Submitted on: Di 16.08.2005 um 13:18
              Item Group: 0.9.16.005
                Category: API - Setup
                Severity: 3 - Normal
                Priority: 5 - Normal
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
       Component Version: CVS
        Platform Version: None
         Reproducibility: Every Time
         Planned Release: None
           Fixed Release: 

    _______________________________________________________

Details:

setup/index.php:

switch ($GLOBALS['phpgw_info']['setup']['currentver']['phpgwapi'])
{
case 'dbcreate':
$GLOBALS['phpgw_setup']->db->create_database($db_root,$db_pass);


must be:

switch ($GLOBALS['phpgw_info']['setup']['currentver']['phpgwapi'])
{
case 'dbcreate':
$GLOBALS['phpgw_setup']->db->create_database($_POST['db_root'],$_POST['db_pass']);


because otherwise the form values will never be used.







    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=14144>

_______________________________________________
  Nachricht geschickt von/durch Savannah
  http://savannah.gnu.org/



_______________________________________________
Phpgroupware-tracker mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-tracker

Reply via email to