mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Clean up entire file, improved error messages and HTML, fixed editing problem, double-checekd security.
git-svn-id: http://svn.automattic.com/wordpress/trunk@41 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fc2d7206bb
commit
374a57451b
@ -37,21 +37,22 @@ for ($i=0; $i<count($b2varstoreset); $i += 1) {
|
||||
|
||||
switch($action) {
|
||||
|
||||
case "update":
|
||||
case 'update':
|
||||
|
||||
$standalone = 1;
|
||||
require_once("./b2header.php");
|
||||
require("b2header.php");
|
||||
|
||||
if ($user_level < 3) {
|
||||
die("You have no right to edit the template for this blog.<br>Ask for a promotion to your <a href=\"mailto:$admin_email\">blog admin</a> :)");
|
||||
die('<p>You have no right to edit the template for this blog.<br />Ask for a promotion to your <a href="mailto:$admin_email">blog admin</a>. :)</p>');
|
||||
}
|
||||
|
||||
$newcontent = stripslashes($HTTP_POST_VARS["newcontent"]);
|
||||
$file = $HTTP_POST_VARS["file"];
|
||||
$f = fopen($file,"w+");
|
||||
$f = fopen($file, 'w+');
|
||||
fwrite($f, $newcontent);
|
||||
fclose($f);
|
||||
|
||||
$file = str_replace('../', '', $file);
|
||||
header("Location: b2template.php?file=$file&a=te");
|
||||
exit();
|
||||
|
||||
@ -59,55 +60,51 @@ break;
|
||||
|
||||
default:
|
||||
|
||||
include("./b2header.php");
|
||||
require('b2header.php');
|
||||
|
||||
if ($user_level <= 3) {
|
||||
die("You have no right to edit the template for this blog.<br>Ask for a promotion to your <a href=\"mailto:$admin_email\">blog admin</a> :)");
|
||||
die('<p>You have no right to edit the template for this blog.<br>Ask for a promotion to your <a href="mailto:$admin_email">blog admin</a>. :)</p>');
|
||||
}
|
||||
|
||||
if ($file=="") {
|
||||
if ($blogfilename != "") {
|
||||
if ('' == $file) {
|
||||
if ('' != $blogfilename) {
|
||||
$file = $blogfilename;
|
||||
} else {
|
||||
$file = "b2.php";
|
||||
$file = 'index.php';
|
||||
}
|
||||
}
|
||||
|
||||
if (substr($file,0,2) == "..")
|
||||
die ("Sorry, can't edit files that are up one directory or more.");
|
||||
if ('..' == substr($file,0,2))
|
||||
die ('Sorry, can’t edit files with ".." in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in.');
|
||||
|
||||
if (substr($file,1,1) == ":")
|
||||
die ("Sorry, can't call files with their real path.");
|
||||
if (':' == substr($file,1,1))
|
||||
die ('Sorry, can’t call files with their real path.');
|
||||
|
||||
if (substr($file,0,1) == "/")
|
||||
$file = ".".$file;
|
||||
if ('/' == substr($file,0,1))
|
||||
$file = '.' . $file;
|
||||
|
||||
$file = stripslashes($file);
|
||||
$file = '../' . $file;
|
||||
|
||||
if (!is_file($file))
|
||||
$error = 1;
|
||||
|
||||
$file = stripslashes($file);
|
||||
|
||||
if ((substr($file,0,2) == "b2") and (substr($file,-4,4) == ".php") and ($file != "b2.php"))
|
||||
$warning = " - this is a b2 file, be careful when editing it !";
|
||||
if ((substr($file,0,2) == 'b2') and (substr($file,-4,4) == '.php') and ($file != 'b2.php'))
|
||||
$warning = ' — this is a WordPress file, be careful when editing it!';
|
||||
|
||||
if (!$error) {
|
||||
$f = fopen($file,"r");
|
||||
$f = fopen($file, 'r');
|
||||
$content = fread($f, filesize($file));
|
||||
// $content = template_simplify($content);
|
||||
$content = htmlspecialchars($content);
|
||||
// $content = str_replace("</textarea","</textarea",$content);
|
||||
}
|
||||
|
||||
echo $blankline;
|
||||
echo $tabletop;
|
||||
?>
|
||||
<table width="100%" cellpadding="5" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="wrap">
|
||||
<?php
|
||||
echo "Listing <b>$file</b>".$warning;
|
||||
if ($a == "te")
|
||||
echo "<i> [ file edited ! ]</i>";
|
||||
echo "Listing <strong>$file</strong> $warning";
|
||||
if ('te' == $a)
|
||||
echo "<em>File edited successfully.</em>";
|
||||
|
||||
if (!$error) {
|
||||
?>
|
||||
@ -126,25 +123,26 @@ default:
|
||||
</form>
|
||||
<?php
|
||||
} else {
|
||||
echo "<p>oops, no such file !</p>";
|
||||
echo '<p>Oops, no such file exists! Double check the name and try again, merci.</p>';
|
||||
}
|
||||
echo $tablebottom;
|
||||
?>
|
||||
</td>
|
||||
</table>
|
||||
<br />
|
||||
<?php echo $tabletop; ?>
|
||||
You can also edit the <a href="b2template.php?file=b2comments.php">comments' template</a> or the <a href="b2template.php?file=b2commentspopup.php">popup comments' template</a>, or edit any other file (provided it's writable by the server, e.g. CHMOD 766).<br />
|
||||
<br />
|
||||
To edit a file, type its name here:
|
||||
</div>
|
||||
|
||||
<div class="wrap">
|
||||
<p>You can also edit the <a href="b2template.php?file=b2comments.php">comments
|
||||
template</a> or the <a href="b2template.php?file=b2commentspopup.php">popup
|
||||
comments template</a>, or edit any other file (provided it’s writable by
|
||||
the server, e.g. CHMOD 766).</p>
|
||||
<p>To edit a file, type its name here:</p>
|
||||
<form name="file" action="b2template.php" method="get">
|
||||
<input type="text" name="file" />
|
||||
<input type="submit" name="submit" class="search" value="go" />
|
||||
</form>
|
||||
<br />
|
||||
Note: of course, you can also edit the files/templates in your text editor and upload them. This online editor is only meant to be used when you don't have access to a text editor...
|
||||
|
||||
<?php echo $tablebottom; ?>
|
||||
<p>Note: of course, you can also edit the files/templates in your text editor
|
||||
and upload them. This online editor is only meant to be used when you don't
|
||||
have access to a text editor.</p>
|
||||
</div>
|
||||
|
||||
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user