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:
parent
b982580f52
commit
08e7857fcf
|
@ -1,22 +1,22 @@
|
|||
<?php
|
||||
// ==================================================================
|
||||
// Author: Justin Vincent (justin@visunet.ie)
|
||||
// Web: http://php.justinvincent.com
|
||||
// Name: ezSQL
|
||||
// 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.
|
||||
// We highly recommend it.
|
||||
// We have modified the HTML it returns slightly.
|
||||
// ==================================================================
|
||||
// Author: Justin Vincent (justin@visunet.ie)
|
||||
// Web: http://php.justinvincent.com
|
||||
// Name: ezSQL
|
||||
// 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.
|
||||
// We highly recommend it.
|
||||
// We have modified the HTML it returns slightly.
|
||||
|
||||
define('EZSQL_VERSION', '1.21');
|
||||
define('OBJECT', 'OBJECT', true);
|
||||
define('ARRAY_A', 'ARRAY_A', true);
|
||||
define('ARRAY_N', 'ARRAY_N', true);
|
||||
define('SAVEQUERIES', true);
|
||||
define('EZSQL_VERSION', '1.21');
|
||||
define('OBJECT', 'OBJECT', true);
|
||||
define('ARRAY_A', 'ARRAY_A', true);
|
||||
define('ARRAY_N', 'ARRAY_N', 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 $vardump_called;
|
||||
|
@ -329,7 +329,7 @@
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$wpdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
|
||||
|
||||
|
|
Loading…
Reference in New Issue