From b0a20370018c2348a487968de0a7288b59b58357 Mon Sep 17 00:00:00 2001
From: donncha
Date: Mon, 26 Sep 2005 10:26:40 +0000
Subject: WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@367 7be80a69-a1ef-0310-a953-fb0f7c49ff36
---
wp-inst/wp-admin/plugin-editor.php | 123 +++++++++++++++++++++++++++++++++++++
1 file changed, 123 insertions(+)
create mode 100644 wp-inst/wp-admin/plugin-editor.php
(limited to 'wp-inst/wp-admin/plugin-editor.php')
diff --git a/wp-inst/wp-admin/plugin-editor.php b/wp-inst/wp-admin/plugin-editor.php
new file mode 100644
index 0000000..4331fe6
--- /dev/null
+++ b/wp-inst/wp-admin/plugin-editor.php
@@ -0,0 +1,123 @@
+You have do not have sufficient permissions to edit templates for this blog.
'));
+
+ $newcontent = stripslashes($_POST['newcontent']);
+ if (is_writeable($real_file)) {
+ $f = fopen($real_file, 'w+');
+ fwrite($f, $newcontent);
+ fclose($f);
+ header("Location: plugin-editor.php?file=$file&a=te");
+ } else {
+ header("Location: plugin-editor.php?file=$file");
+ }
+
+ exit();
+
+break;
+
+default:
+
+ require_once('admin-header.php');
+ if ( !current_user_can('edit_plugins') )
+ die(__('You have do not have sufficient permissions to edit plugins for this blog.
'));
+
+ update_recently_edited("wp-content/plugins/$file");
+
+ if (!is_file($real_file))
+ $error = 1;
+
+ if (!$error) {
+ $f = fopen($real_file, 'r');
+ $content = fread($f, filesize($real_file));
+ $content = htmlspecialchars($content);
+ }
+
+ ?>
+
+
+
+
+ ' . sprintf(__('Editing
%s'), $file) . '';
+ } else {
+ echo '
' . sprintf(__('Browsing %s'), $file) . '
';
+ }
+ ?>
+
+
+
+
' . __('Oops, no such file exists! Double check the name and try again, merci.') . '
';
+ }
+ ?>
+
+
--
cgit