Changeset d5eb5cd in github


Ignore:
Timestamp:
Jun 13, 2008 5:14:50 AM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
991e15c
Parents:
c98f3b5
Message:

Use MDB2 instead of DB in installer (#1485124)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • installer/config.php

    rc060677 rd5eb5cd  
    185185<?php 
    186186 
    187 require_once 'DB.php'; 
     187require_once 'MDB2.php'; 
    188188 
    189189$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli', 
     
    202202$input_dbpass = new html_passwordfield(array('name' => '_dbpass', 'size' => 20, 'id' => "cfgdbpass")); 
    203203 
    204 $dsnw = DB::parseDSN($RCI->getprop('db_dsnw')); 
     204$dsnw = MDB2::parseDSN($RCI->getprop('db_dsnw')); 
    205205 
    206206echo $select_dbtype->show($RCI->is_post ? $_POST['_dbtype'] : $dsnw['phptype']); 
Note: See TracChangeset for help on using the changeset viewer.