2004-10-19 05:03:06 +02:00
|
|
|
<?php
|
|
|
|
require_once('../wp-config.php');
|
2004-12-14 04:00:55 +01:00
|
|
|
require_once(ABSPATH . 'wp-admin/admin-functions.php');
|
|
|
|
auth_redirect();
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2004-12-19 19:43:45 +01:00
|
|
|
header('Expires: Mon, 11 Jan 1984 05:00:00 GMT');
|
|
|
|
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
|
|
|
header('Cache-Control: no-cache, must-revalidate, max-age=0');
|
|
|
|
header('Pragma: no-cache');
|
2004-10-19 05:03:06 +02:00
|
|
|
|
|
|
|
$dogs = $wpdb->get_results("SELECT * FROM $wpdb->categories");
|
|
|
|
foreach ($dogs as $catt) {
|
|
|
|
$cache_categories[$catt->cat_ID] = $catt;
|
|
|
|
}
|
|
|
|
|
|
|
|
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"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
require(ABSPATH . '/wp-admin/menu.php');
|
|
|
|
|
|
|
|
// Handle plugin admin pages.
|
|
|
|
if (isset($_GET['page'])) {
|
2004-11-28 01:33:04 +01:00
|
|
|
$plugin_page = plugin_basename($_GET['page']);
|
2005-02-07 02:15:06 +01:00
|
|
|
$page_hook = get_plugin_page_hook($plugin_page, $pagenow);
|
2004-12-30 19:05:46 +01:00
|
|
|
|
2005-02-07 02:15:06 +01: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-19 05:03:06 +02:00
|
|
|
|
2005-02-07 02:15:06 +01: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-19 05:03:06 +02:00
|
|
|
|
2005-02-07 02:15:06 +01:00
|
|
|
exit();
|
2004-10-19 05:03:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|