  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: database.php 1026 2006-10-20 00:53:11Z hpdl $ |
| |
| 3 | + | $Id: database.php 1036 2006-10-22 09:15:09Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
7 | 7 | | |
  |
8 | | - | Copyright (c) 2004 osCommerce |
| |
| 8 | + | Copyright (c) 2006 osCommerce |
|
9 | 9 | | |
| |
10 | 10 | | Released under the GNU General Public License |
| |
11 | 11 | | */ |
| |
|
|
 |
… |
|
24 | 24 | | $number_of_queries = 0, |
| |
25 | 25 | | $time_of_queries = 0; |
| |
26 | 26 | | |
  |
27 | | - | function &connect($server, $username, $password, $type = '') { |
| |
28 | | - | if (empty($type)) { |
| |
29 | | - | $type = DB_DATABASE_CLASS; |
| |
30 | | - | } |
| |
31 | | - | |
| |
| 27 | + | function &connect($server, $username, $password, $type = DB_DATABASE_CLASS) { |
  |
32 | 28 | | require('database/' . $type . '.php'); |
| |
33 | 29 | | |
| |
34 | 30 | | $class = 'osC_Database_' . $type; |