diff options
Diffstat (limited to 'wp-inst/wp-admin/plugin-editor.php')
| -rw-r--r-- | wp-inst/wp-admin/plugin-editor.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-admin/plugin-editor.php b/wp-inst/wp-admin/plugin-editor.php index 223b563..4a46027 100644 --- a/wp-inst/wp-admin/plugin-editor.php +++ b/wp-inst/wp-admin/plugin-editor.php @@ -36,7 +36,7 @@ switch($action) { case 'update': if ( !current_user_can('edit_plugins') ) - die(__('<p>You have do not have sufficient permissions to edit templates for this blog.</p>')); + die('<p>'.__('You have do not have sufficient permissions to edit templates for this blog.').'</p>'); $newcontent = stripslashes($_POST['newcontent']); if (is_writeable($real_file)) { @@ -56,7 +56,7 @@ default: require_once('admin-header.php'); if ( !current_user_can('edit_plugins') ) - die(__('<p>You have do not have sufficient permissions to edit plugins for this blog.</p>')); + die('<p>'.__('You have do not have sufficient permissions to edit plugins for this blog.').'</p>'); update_recently_edited("wp-content/plugins/$file"); |
