2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
|
|
|
|
2003-06-13 00:42:48 +02:00
|
|
|
require_once('../wp-config.php');
|
2003-12-18 10:36:13 +01:00
|
|
|
require_once(ABSPATH.'/wp-admin/auth.php');
|
2004-01-27 09:31:17 +01:00
|
|
|
require(ABSPATH.'/wp-admin/admin-functions.php');
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2003-08-07 02:00:55 +02:00
|
|
|
function gethelp_link($this_file, $helptag) {
|
2003-08-15 21:39:58 +02:00
|
|
|
$url = 'http://wordpress.org/docs/reference/links/#'.$helptag;
|
2004-04-20 06:15:18 +02:00
|
|
|
$s = ' <a href="'.$url.'" title="' . __('Click here for help') .'">?</a>';
|
2003-08-07 02:00:55 +02:00
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
2004-01-27 07:35:07 +01:00
|
|
|
if (!isset($blogID)) $blog_ID=1;
|
|
|
|
if (!isset($debug)) $debug=0;
|
2003-05-22 14:12:53 +02:00
|
|
|
timer_start();
|
|
|
|
|
2004-01-27 07:35:07 +01:00
|
|
|
$dogs = $wpdb->get_results("SELECT * FROM $tablecategories WHERE 1=1");
|
|
|
|
foreach ($dogs as $catt) {
|
|
|
|
$cache_categories[$catt->cat_ID] = $catt;
|
|
|
|
}
|
|
|
|
|
2003-05-22 14:12:53 +02:00
|
|
|
get_currentuserinfo();
|
|
|
|
|
2003-08-15 21:39:58 +02:00
|
|
|
$posts_per_page = get_settings('posts_per_page');
|
|
|
|
$what_to_show = get_settings('what_to_show');
|
|
|
|
$archive_mode = get_settings('archive_mode');
|
|
|
|
$date_format = stripslashes(get_settings('date_format'));
|
|
|
|
$time_format = stripslashes(get_settings('time_format'));
|
2003-05-22 14:12:53 +02:00
|
|
|
|
|
|
|
// let's deactivate quicktags on IE Mac and Lynx, because they don't work there.
|
|
|
|
if (($is_macIE) || ($is_lynx))
|
2004-01-27 07:35:07 +01:00
|
|
|
$use_quicktags = 0;
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2003-12-18 10:36:13 +01:00
|
|
|
$wpvarstoreset = array('profile','standalone','redirect','redirect_url','a','popuptitle','popupurl','text', 'trackback', 'pingback');
|
|
|
|
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
|
2004-01-27 07:35:07 +01:00
|
|
|
$wpvar = $wpvarstoreset[$i];
|
|
|
|
if (!isset($$wpvar)) {
|
2004-04-21 00:56:47 +02:00
|
|
|
if (empty($_POST["$wpvar"])) {
|
|
|
|
if (empty($_GET["$wpvar"])) {
|
2004-01-27 07:35:07 +01:00
|
|
|
$$wpvar = '';
|
|
|
|
} else {
|
2004-04-21 00:56:47 +02:00
|
|
|
$$wpvar = $_GET["$wpvar"];
|
2004-01-27 07:35:07 +01:00
|
|
|
}
|
|
|
|
} else {
|
2004-04-21 00:56:47 +02:00
|
|
|
$$wpvar = $_POST["$wpvar"];
|
2004-01-27 07:35:07 +01:00
|
|
|
}
|
|
|
|
}
|
2003-05-22 14:12:53 +02:00
|
|
|
}
|
|
|
|
|
2004-04-17 20:44:10 +02:00
|
|
|
if ($standalone == 0) :
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2003-05-23 10:29:51 +02:00
|
|
|
?><!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">
|
2003-05-22 14:12:53 +02:00
|
|
|
<head>
|
2003-10-13 07:15:47 +02:00
|
|
|
<title>WordPress › <?php bloginfo('name') ?> › <?php echo $title; ?></title>
|
2004-01-03 06:21:38 +01:00
|
|
|
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
|
|
|
<link rel="shortcut icon" href="../wp-images/wp-favicon.png" />
|
2004-03-01 07:13:32 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
|
2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
|
|
|
if ($redirect==1) {
|
|
|
|
?>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
<!--
|
|
|
|
function redirect() {
|
|
|
|
window.location = "<?php echo $redirect_url; ?>";
|
|
|
|
}
|
|
|
|
setTimeout("redirect();", 600);
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
<?php
|
2003-05-23 10:29:51 +02:00
|
|
|
} // redirect
|
2003-05-22 14:12:53 +02:00
|
|
|
?>
|
2003-05-23 10:29:51 +02:00
|
|
|
|
2003-05-22 14:12:53 +02:00
|
|
|
<script language="javascript" type="text/javascript">
|
2003-12-22 01:09:59 +01:00
|
|
|
//<![CDATA[
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2004-02-05 06:40:25 +01:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
|
|
|
function GetElementsWithClassName(elementName, className) {
|
|
|
|
var allElements = document.getElementsByTagName(elementName);
|
|
|
|
var elemColl = new Array();
|
|
|
|
for (i = 0; i < allElements.length; i++) {
|
|
|
|
if (allElements[i].className == className) {
|
|
|
|
elemColl[elemColl.length] = allElements[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return elemColl;
|
|
|
|
}
|
|
|
|
|
|
|
|
function blurry() {
|
|
|
|
if (!document.getElementById) return;
|
|
|
|
|
|
|
|
var aInputs = document.getElementsByTagName('input');
|
|
|
|
|
|
|
|
for (var i = 0; i < aInputs.length; i++) {
|
|
|
|
aInputs[i].onclick = function() {
|
|
|
|
var inputColl = GetElementsWithClassName('input','valinp');
|
|
|
|
var rel = document.getElementById('rel');
|
|
|
|
var inputs = '';
|
|
|
|
for (i = 0; i < inputColl.length; i++) {
|
|
|
|
if (inputColl[i].checked) {
|
|
|
|
if (inputColl[i].value != '') inputs += inputColl[i].value + ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inputs = inputs.substr(0,inputs.length - 1);
|
|
|
|
if (rel != null) {
|
|
|
|
rel.value = inputs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aInputs[i].onkeyup = function() {
|
|
|
|
var inputColl = GetElementsWithClassName('input','valinp');
|
|
|
|
var rel = document.getElementById('rel');
|
|
|
|
var inputs = '';
|
|
|
|
for (i = 0; i < inputColl.length; i++) {
|
|
|
|
if (inputColl[i].checked) {
|
|
|
|
inputs += inputColl[i].value + ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inputs = inputs.substr(0,inputs.length - 1);
|
|
|
|
if (rel != null) {
|
|
|
|
rel.value = inputs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.onload = blurry;
|
2003-12-22 01:09:59 +01:00
|
|
|
//]]>
|
2003-05-22 14:12:53 +02:00
|
|
|
</script>
|
2004-04-19 10:09:27 +02:00
|
|
|
|
|
|
|
<?php wp_admin_head(); ?>
|
2003-05-22 14:12:53 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2004-04-20 06:15:18 +02:00
|
|
|
<h1 id="wphead"><a href="http://wordpress.org" rel="external" title="<?php _e('Visit WordPress.org') ?>"><?php _e('WordPress') ?></a></h1>
|
2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
|
|
|
if ($profile==0) {
|
2004-01-27 07:35:07 +01:00
|
|
|
include('menu.php');
|
2003-05-22 14:12:53 +02:00
|
|
|
}
|
2004-02-05 15:28:02 +01:00
|
|
|
?>
|
|
|
|
<?php
|
2004-04-17 20:44:10 +02:00
|
|
|
endif;
|
2004-01-28 17:18:49 +01:00
|
|
|
?>
|