Just an indenting thing that was bugging me.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1178 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-04-26 02:28:06 +00:00
parent b982580f52
commit 08e7857fcf
1 changed files with 270 additions and 270 deletions

View File

@ -1,22 +1,22 @@
<?php <?php
// ================================================================== // ==================================================================
// Author: Justin Vincent (justin@visunet.ie) // Author: Justin Vincent (justin@visunet.ie)
// Web: http://php.justinvincent.com // Web: http://php.justinvincent.com
// Name: ezSQL // Name: ezSQL
// Desc: Class to make it very easy to deal with mySQL database connections. // Desc: Class to make it very easy to deal with mySQL database connections.
// WordPress is using this class to make the code cleaner and faster. // WordPress is using this class to make the code cleaner and faster.
// We highly recommend it. // We highly recommend it.
// We have modified the HTML it returns slightly. // We have modified the HTML it returns slightly.
define('EZSQL_VERSION', '1.21'); define('EZSQL_VERSION', '1.21');
define('OBJECT', 'OBJECT', true); define('OBJECT', 'OBJECT', true);
define('ARRAY_A', 'ARRAY_A', true); define('ARRAY_A', 'ARRAY_A', true);
define('ARRAY_N', 'ARRAY_N', true); define('ARRAY_N', 'ARRAY_N', true);
define('SAVEQUERIES', true); define('SAVEQUERIES', true);
// The Main Class, renamed to avoid conflicts. // The Main Class, renamed to avoid conflicts.
class wpdb { class wpdb {
var $debug_called; var $debug_called;
var $vardump_called; var $vardump_called;
@ -329,7 +329,7 @@
} }
} }
$wpdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST); $wpdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);