mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
ff463a8a82
git-svn-id: http://svn.automattic.com/wordpress/trunk@320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
105 lines
3.1 KiB
PHP
105 lines
3.1 KiB
PHP
<?php
|
|
|
|
require_once('../wp-config.php');
|
|
require_once($abspath.$b2inc.'/b2template.functions.php');
|
|
require_once($abspath.'/wp-admin/b2verifauth.php');
|
|
require_once($abspath.$b2inc.'/b2vars.php');
|
|
require_once($abspath.$b2inc.'/b2functions.php');
|
|
require_once($abspath.$b2inc.'/xmlrpc.inc');
|
|
require_once($abspath.$b2inc.'/xmlrpcs.inc');
|
|
|
|
function gethelp_link($this_file, $helptag) {
|
|
$url = 'http://wordpress.org/docs/reference/links/#'.$helptag;
|
|
$s = ' <a href="'.$url.'" title="Click here for help">?</a>';
|
|
return $s;
|
|
}
|
|
|
|
if (!isset($use_cache)) $use_cache=1;
|
|
if (!isset($blogID)) $blog_ID=1;
|
|
if (!isset($debug)) $debug=0;
|
|
timer_start();
|
|
|
|
get_currentuserinfo();
|
|
|
|
$posts_per_page = get_settings('posts_per_page');
|
|
$what_to_show = get_settings('what_to_show');
|
|
$archive_mode = get_settings('archive_mode');
|
|
$time_difference = get_settings('time_difference');
|
|
$date_format = stripslashes(get_settings('date_format'));
|
|
$time_format = stripslashes(get_settings('time_format'));
|
|
|
|
$admin_area_charset = (!isset($admin_area_charset)) ? 'iso-8859-15' : $admin_area_charset;
|
|
|
|
// let's deactivate quicktags on IE Mac and Lynx, because they don't work there.
|
|
if (($is_macIE) || ($is_lynx))
|
|
$use_quicktags = 0;
|
|
|
|
$b2varstoreset = array('profile','standalone','redirect','redirect_url','a','popuptitle','popupurl','text', 'trackback', 'pingback');
|
|
for ($i=0; $i<count($b2varstoreset); $i += 1) {
|
|
$b2var = $b2varstoreset[$i];
|
|
if (!isset($$b2var)) {
|
|
if (empty($HTTP_POST_VARS["$b2var"])) {
|
|
if (empty($HTTP_GET_VARS["$b2var"])) {
|
|
$$b2var = '';
|
|
} else {
|
|
$$b2var = $HTTP_GET_VARS["$b2var"];
|
|
}
|
|
} else {
|
|
$$b2var = $HTTP_POST_VARS["$b2var"];
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($standalone == 0) {
|
|
|
|
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>WordPress > <?php bloginfo('name') ?> > <?php echo $title; ?></title>
|
|
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
|
<?php
|
|
if ($redirect==1) {
|
|
?>
|
|
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
function redirect() {
|
|
window.location = "<?php echo $redirect_url; ?>";
|
|
}
|
|
setTimeout("redirect();", 600);
|
|
//-->
|
|
</script>
|
|
<?php
|
|
} // redirect
|
|
?>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
<!-- hiding from old terrible browsers
|
|
|
|
function profile(userID) {
|
|
window.open ("b2profile.php?action=viewprofile&user="+userID, "Profile", "width=500, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=1, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
|
|
}
|
|
|
|
function launchupload() {
|
|
window.open ("b2upload.php", "b2upload", "width=380,height=360,location=0,menubar=0,resizable=1,scrollbars=yes,status=1,toolbar=0");
|
|
}
|
|
|
|
function helpWindow(url) {
|
|
window.open(url, "Help", "width=640, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=1, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
|
|
}
|
|
|
|
|
|
// End -->
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<?php
|
|
if ($profile==0) {
|
|
include('b2menutop.php');
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
}
|
|
?>
|