Removed erroneous require of wp-db
Added missing require of wp-db to b2config Moved links tables tt b2config Fixed definition of extra db vars git-svn-id: http://svn.automattic.com/wordpress/trunk@152 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
73c4f8cfad
commit
3b1ee8f5ab
|
@ -55,7 +55,6 @@ require('b2config.php');
|
|||
require_once($abspath.$b2inc.'/b2template.functions.php');
|
||||
require_once($abspath.$b2inc.'/b2functions.php');
|
||||
require_once($abspath.$b2inc.'/b2vars.php');
|
||||
require_once($curpath.$b2inc.'/wp-db.php');
|
||||
|
||||
if (isset($calendar) && ($calendar != '')) {
|
||||
$thisyear = substr($calendar,0,4);
|
||||
|
|
12
b2config.php
12
b2config.php
|
@ -49,6 +49,9 @@ $tableusers = 'b2users';
|
|||
$tablesettings = 'b2settings';
|
||||
$tablecategories = 'b2categories';
|
||||
$tablecomments = 'b2comments';
|
||||
// tables for link manager
|
||||
$tablelinks = "b2links";
|
||||
$tablelinkcategories = "b2linkcategories";
|
||||
|
||||
|
||||
// ** Post preview function **
|
||||
|
@ -315,11 +318,11 @@ $HTTP_HOST = getenv('HTTP_HOST'); /* domain name */
|
|||
$REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */
|
||||
$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */
|
||||
|
||||
$server = $dbhost;
|
||||
$loginsql = $dbusername;
|
||||
$passsql = $dbpassword;
|
||||
$server = DB_HOST;
|
||||
$loginsql = DB_USER;
|
||||
$passsql = DB_PASSWORD;
|
||||
$path = $siteurl;
|
||||
$base = $dbname;
|
||||
$base = DB_NAME;
|
||||
|
||||
|
||||
// This should get us the relative path of WordPress and the absolute path on the server. Yipee!
|
||||
|
@ -331,4 +334,5 @@ for ($i = 3; $i < count($url); $i++) {
|
|||
$abspath = getenv('DOCUMENT_ROOT') . $relpath . '/';
|
||||
$b2inc = "/$b2inc";
|
||||
$pathserver = &$siteurl;
|
||||
require_once($abspath.$b2inc.'/wp-db.php');
|
||||
?>
|
||||
|
|
|
@ -12,7 +12,6 @@ require_once ($curpath.$b2inc.'/b2vars.php');
|
|||
require_once ($curpath.$b2inc.'/b2functions.php');
|
||||
require_once ($curpath.$b2inc.'/xmlrpc.inc');
|
||||
require_once ($curpath.$b2inc.'/xmlrpcs.inc');
|
||||
require_once ($curpath.$b2inc.'/wp-db.php');
|
||||
|
||||
$b2varstoreset = array('m','p','posts','w','c', 'cat','withcomments','s','search','exact', 'sentence','poststart','postend','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby');
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ require_once($abspath.$b2inc.'/b2vars.php');
|
|||
require_once($abspath.$b2inc.'/b2functions.php');
|
||||
require_once($abspath.$b2inc.'/xmlrpc.inc');
|
||||
require_once($abspath.$b2inc.'/xmlrpcs.inc');
|
||||
require_once($abspath.$b2inc.'/wp-db.php');
|
||||
|
||||
if (!isset($use_cache)) $use_cache=1;
|
||||
if (!isset($blogID)) $blog_ID=1;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<?php
|
||||
|
||||
require_once('../b2config.php');
|
||||
require_once($abspath.$b2inc.'/wp-db.php');
|
||||
|
||||
/* checking login & pass in the database */
|
||||
function veriflog() {
|
||||
|
|
Loading…
Reference in New Issue