'.__('You 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); wp_redirect("plugin-editor.php?file=$file&a=te"); } else { wp_redirect("plugin-editor.php?file=$file"); } exit(); break; default: if ( !current_user_can('edit_plugins') ) wp_die(''.__('You do not have sufficient permissions to edit plugins for this blog.').'
'); require_once('admin-header.php'); update_recently_edited(PLUGINDIR . "/$file"); if (!is_file($real_file)) $error = 1; if (!$error) { $f = fopen($real_file, 'r'); $content = fread($f, filesize($real_file)); $content = htmlspecialchars($content); } ?>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '