summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-admin/plugin-editor.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst/wp-admin/plugin-editor.php')
-rw-r--r--wp-inst/wp-admin/plugin-editor.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/wp-inst/wp-admin/plugin-editor.php b/wp-inst/wp-admin/plugin-editor.php
index 739ccb5..885fb94 100644
--- a/wp-inst/wp-admin/plugin-editor.php
+++ b/wp-inst/wp-admin/plugin-editor.php
@@ -35,6 +35,8 @@ switch($action) {
case 'update':
+ check_admin_referer('edit-plugin_' . $file);
+
if ( !current_user_can('edit_plugins') )
die('<p>'.__('You have do not have sufficient permissions to edit templates for this blog.').'</p>');
@@ -96,6 +98,7 @@ if ($plugin_files) :
</div>
<?php if (!$error) { ?>
<form name="template" id="template" action="plugin-editor.php" method="post">
+ <?php wp_nonce_field('edit-plugin_' . $file) ?>
<div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1"><?php echo $content ?></textarea>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="file" value="<?php echo $file ?>" />