diff -r a4642baaf829 -r 4d4862461b8d web/wp-admin/theme-editor.php
--- a/web/wp-admin/theme-editor.php Tue Feb 02 14:45:47 2010 +0000
+++ b/web/wp-admin/theme-editor.php Tue Feb 02 15:44:16 2010 +0000
@@ -1,233 +1,244 @@
-'.__('You do not have sufficient permissions to edit templates for this blog.').'
');
-
- $newcontent = stripslashes($_POST['newcontent']);
- $theme = urlencode($theme);
- if (is_writeable($real_file)) {
- //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
- $f = fopen($real_file, 'w+');
- if ($f !== FALSE) {
- fwrite($f, $newcontent);
- fclose($f);
- $location = "theme-editor.php?file=$file&theme=$theme&a=te";
- } else {
- $location = "theme-editor.php?file=$file&theme=$theme";
- }
- } else {
- $location = "theme-editor.php?file=$file&theme=$theme";
- }
-
- $location = wp_kses_no_null($location);
- $strip = array('%0d', '%0a', '%0D', '%0A');
- $location = _deep_replace($strip, $location);
- header("Location: $location");
- exit();
-
-break;
-
-default:
-
- if ( !current_user_can('edit_themes') )
- wp_die(''.__('You do not have sufficient permissions to edit themes for this blog.').'
');
-
- require_once('admin-header.php');
-
- update_recently_edited($file);
-
- if ( !is_file($real_file) )
- $error = 1;
-
- if ( !$error && filesize($real_file) > 0 ) {
- $f = fopen($real_file, 'r');
- $content = fread($f, filesize($real_file));
-
- if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) {
- $functions = wp_doc_link_parse( $content );
-
- $docs_select = '';
- $docs_select .= '' . esc_attr__( 'Function Name...' ) . ' ';
- foreach ( $functions as $function ) {
- $docs_select .= '' . htmlspecialchars( $function ) . '() ';
- }
- $docs_select .= ' ';
- }
-
- $content = htmlspecialchars( $content );
- $codepress_lang = codepress_get_lang($real_file);
- }
-
- ?>
-
-
-$description (%s)" : "%s";
-?>
-
-
-
-
-
-
-
-
-
-
-
-
-($template_show)" : "$description";
- $filedesc = ( $template_file == $file ) ? "$description ($template_show) " : $filedesc;
-
- // If we have two files of the same name prefer the one in the Template Directory
- // This means that we display the correct files for child themes which overload Templates as well as Styles
- if( array_key_exists($description, $template_mapping ) ) {
- if ( false !== strpos( $template_file, $template_dir ) ) {
- $template_mapping[ $description ] = array( $template_file, $filedesc );
- }
- } else {
- $template_mapping[ $description ] = array( $template_file, $filedesc );
- }
- }
- ksort( $template_mapping );
- while ( list( $template_sorted_key, list( $template_file, $filedesc ) ) = each( $template_mapping ) ) :
- ?>
- &theme=">
-
-
-
-
-($style_show)" : "$description";
- $filedesc = ( $style_file == $file ) ? "$description ($style_show) " : $filedesc;
- $template_mapping[ $description ] = array( $style_file, $filedesc );
- }
- ksort( $template_mapping );
- while ( list( $template_sorted_key, list( $style_file, $filedesc ) ) = each( $template_mapping ) ) :
- ?>
- &theme=">
-
-
-
-
-
-
-
-
' . __('Oops, no such file exists! Double check the name and try again, merci.') . '
';
- }
-?>
-
-
-'.__('You do not have sufficient permissions to edit templates for this blog.').'');
+
+$title = __("Edit Themes");
+$parent_file = 'themes.php';
+
+wp_reset_vars(array('action', 'redirect', 'profile', 'error', 'warning', 'a', 'file', 'theme', 'dir'));
+
+wp_admin_css( 'theme-editor' );
+
+$themes = get_themes();
+
+if (empty($theme)) {
+ $theme = get_current_theme();
+} else {
+ $theme = stripslashes($theme);
+}
+
+if ( ! isset($themes[$theme]) )
+ wp_die(__('The requested theme does not exist.'));
+
+$allowed_files = array_merge($themes[$theme]['Stylesheet Files'], $themes[$theme]['Template Files']);
+
+if (empty($file)) {
+ $file = $allowed_files[0];
+} else {
+ $file = stripslashes($file);
+ if ( 'theme' == $dir ) {
+ $file = dirname(dirname($themes[$theme]['Template Dir'])) . $file ;
+ } else if ( 'style' == $dir) {
+ $file = dirname(dirname($themes[$theme]['Stylesheet Dir'])) . $file ;
+ }
+}
+
+validate_file_to_edit($file, $allowed_files);
+$scrollto = isset($_REQUEST['scrollto']) ? (int) $_REQUEST['scrollto'] : 0;
+$file_show = basename( $file );
+
+switch($action) {
+
+case 'update':
+
+ check_admin_referer('edit-theme_' . $file . $theme);
+
+ $newcontent = stripslashes($_POST['newcontent']);
+ $theme = urlencode($theme);
+ if (is_writeable($file)) {
+ //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
+ $f = fopen($file, 'w+');
+ if ($f !== FALSE) {
+ fwrite($f, $newcontent);
+ fclose($f);
+ $location = "theme-editor.php?file=$file&theme=$theme&a=te&scrollto=$scrollto";
+ } else {
+ $location = "theme-editor.php?file=$file&theme=$theme&scrollto=$scrollto";
+ }
+ } else {
+ $location = "theme-editor.php?file=$file&theme=$theme&scrollto=$scrollto";
+ }
+
+ $location = wp_kses_no_null($location);
+ $strip = array('%0d', '%0a', '%0D', '%0A');
+ $location = _deep_replace($strip, $location);
+ header("Location: $location");
+ exit();
+
+break;
+
+default:
+
+ require_once('admin-header.php');
+
+ update_recently_edited($file);
+
+ if ( !is_file($file) )
+ $error = 1;
+
+ if ( !$error && filesize($file) > 0 ) {
+ $f = fopen($file, 'r');
+ $content = fread($f, filesize($file));
+
+ if ( '.php' == substr( $file, strrpos( $file, '.' ) ) ) {
+ $functions = wp_doc_link_parse( $content );
+
+ $docs_select = '';
+ $docs_select .= '' . esc_attr__( 'Function Name...' ) . ' ';
+ foreach ( $functions as $function ) {
+ $docs_select .= '' . htmlspecialchars( $function ) . '() ';
+ }
+ $docs_select .= ' ';
+ }
+
+ $content = htmlspecialchars( $content );
+ $codepress_lang = codepress_get_lang($file);
+ }
+
+ ?>
+
+
+$description (%s)" : "%s";
+?>
+
+
+
+
+
+
+
+
+
+
+
+
+$theme_name";
+}
+?>
+
+
+
+
+
+
+
+
+
+
+
+
+($template_show)" : "$description";
+ $filedesc = ( $template_file == $file ) ? "$description ($template_show) " : $filedesc;
+
+ // If we have two files of the same name prefer the one in the Template Directory
+ // This means that we display the correct files for child themes which overload Templates as well as Styles
+ if( array_key_exists($description, $template_mapping ) ) {
+ if ( false !== strpos( $template_file, $template_dir ) ) {
+ $template_mapping[ $description ] = array( _get_template_edit_filename($template_file, $template_dir), $filedesc );
+ }
+ } else {
+ $template_mapping[ $description ] = array( _get_template_edit_filename($template_file, $template_dir), $filedesc );
+ }
+ }
+ ksort( $template_mapping );
+ while ( list( $template_sorted_key, list( $template_file, $filedesc ) ) = each( $template_mapping ) ) :
+ ?>
+ &theme=&dir=theme">
+
+
+
+
+($style_show)" : "$description";
+ $filedesc = ( $style_file == $file ) ? "$description ($style_show) " : $filedesc;
+ $template_mapping[ $description ] = array( _get_template_edit_filename($style_file, $stylesheet_dir), $filedesc );
+ }
+ ksort( $template_mapping );
+ while ( list( $template_sorted_key, list( $style_file, $filedesc ) ) = each( $template_mapping ) ) :
+ ?>
+ &theme=&dir=style">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+";
+?>
+
+
+
the Codex for more information.'); ?>
+
+
+
+
' . __('Oops, no such file exists! Double check the name and try again, merci.') . '
';
+ }
+?>
+
+
+
+