2004-10-18 23:03:06 -04:00
|
|
|
<?php
|
2005-05-09 07:06:45 -04:00
|
|
|
if ( defined('ABSPATH') )
|
|
|
|
require_once( ABSPATH . 'wp-config.php');
|
|
|
|
else
|
|
|
|
require_once('../wp-config.php');
|
2005-11-21 04:11:19 -05:00
|
|
|
|
|
|
|
if ( get_option('db_version') != $wp_db_version )
|
2005-11-21 04:15:42 -05:00
|
|
|
die (sprintf(__("Your database is out-of-date. Please <a href='%s'>upgrade</a>."), get_option('siteurl') . '/wp-admin/upgrade.php'));
|
2005-05-09 07:06:45 -04:00
|
|
|
|
2004-12-13 22:00:55 -05:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-functions.php');
|
2005-07-08 18:59:15 -04:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-db.php');
|
2005-09-13 20:03:02 -04:00
|
|
|
require_once(ABSPATH . WPINC . '/registration-functions.php');
|
|
|
|
|
2004-12-13 22:00:55 -05:00
|
|
|
auth_redirect();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-06-08 20:17:43 -04:00
|
|
|
nocache_headers();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-03-31 00:25:54 -05:00
|
|
|
update_category_cache();
|
2004-10-18 23:03:06 -04:00
|
|
|
|
|
|
|
get_currentuserinfo();
|
|
|
|
|
|
|
|
$posts_per_page = get_settings('posts_per_page');
|
|
|
|
$what_to_show = get_settings('what_to_show');
|
|
|
|
$date_format = get_settings('date_format');
|
|
|
|
$time_format = get_settings('time_format');
|
|
|
|
|
|
|
|
$wpvarstoreset = array('profile','redirect','redirect_url','a','popuptitle','popupurl','text', 'trackback', 'pingback');
|
|
|
|
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
|
|
|
|
$wpvar = $wpvarstoreset[$i];
|
|
|
|
if (!isset($$wpvar)) {
|
|
|
|
if (empty($_POST["$wpvar"])) {
|
|
|
|
if (empty($_GET["$wpvar"])) {
|
|
|
|
$$wpvar = '';
|
|
|
|
} else {
|
|
|
|
$$wpvar = $_GET["$wpvar"];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$$wpvar = $_POST["$wpvar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-10 00:16:17 -05:00
|
|
|
$xfn_js = $sack_js = $list_js = $cat_js = $dbx_js = $editing = false;
|
|
|
|
|
2004-10-18 23:03:06 -04:00
|
|
|
require(ABSPATH . '/wp-admin/menu.php');
|
|
|
|
|
|
|
|
// Handle plugin admin pages.
|
|
|
|
if (isset($_GET['page'])) {
|
2005-11-17 18:01:28 -05:00
|
|
|
$plugin_page = stripslashes($_GET['page']);
|
2005-12-21 22:06:04 -05:00
|
|
|
$plugin_page = plugin_basename($plugin_page);
|
2005-02-06 20:15:06 -05:00
|
|
|
$page_hook = get_plugin_page_hook($plugin_page, $pagenow);
|
2004-12-30 13:05:46 -05:00
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
if ( $page_hook ) {
|
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . '/wp-admin/admin-header.php');
|
|
|
|
|
|
|
|
do_action($page_hook);
|
|
|
|
} else {
|
|
|
|
if ( validate_file($plugin_page) ) {
|
|
|
|
die(__('Invalid plugin page'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! file_exists(ABSPATH . "wp-content/plugins/$plugin_page"))
|
|
|
|
die(sprintf(__('Cannot load %s.'), $plugin_page));
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . '/wp-admin/admin-header.php');
|
|
|
|
|
|
|
|
include(ABSPATH . "wp-content/plugins/$plugin_page");
|
|
|
|
}
|
|
|
|
|
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
2004-10-18 23:03:06 -04:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
exit();
|
|
|
|
} else if (isset($_GET['import'])) {
|
|
|
|
|
|
|
|
$importer = $_GET['import'];
|
|
|
|
|
|
|
|
if ( validate_file($importer) ) {
|
|
|
|
die(__('Invalid importer.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
|
|
|
die(__('Cannot load importer.'));
|
2005-09-10 18:44:14 -04:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
include(ABSPATH . "wp-admin/import/$importer.php");
|
|
|
|
|
|
|
|
$parent_file = 'import.php';
|
|
|
|
$title = __('Import');
|
|
|
|
|
|
|
|
if (! isset($_GET['noheader']))
|
|
|
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
|
|
|
|
|
|
|
require_once(ABSPATH . 'wp-admin/upgrade-functions.php');
|
|
|
|
|
2005-09-10 18:44:14 -04:00
|
|
|
define('WP_IMPORTING', true);
|
2005-10-05 19:58:16 -04:00
|
|
|
kses_init_filters(); // Always filter imported data with kses.
|
2005-09-10 18:44:14 -04:00
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
call_user_func($wp_importers[$importer][2]);
|
|
|
|
|
|
|
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
|
|
|
|
2005-02-06 20:15:06 -05:00
|
|
|
exit();
|
2004-10-18 23:03:06 -04:00
|
|
|
}
|
|
|
|
|
2005-08-21 03:03:23 -04:00
|
|
|
?>
|