Make WordPress Core


Ignore:
Timestamp:
12/09/2008 06:03:31 PM (16 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/theme-editor.php

    r10137 r10150  
    101101<div class="wrap">
    102102<?php screen_icon(); ?>
    103 <h2><?php echo wp_specialchars( $title ); ?></h2> 
     103<h2><?php echo wp_specialchars( $title ); ?></h2>
    104104<div class="bordertitle">
    105105    <form id="themeselector" action="theme-editor.php" method="post">
     
    142142        $filedesc = ( $description != $template_file ) ? "$description <span class='nonessential'>($template_show)</span>" : "$description";
    143143        $filedesc = ( $template_file == $file ) ? "<span class='highlight'>$description <span class='nonessential'>($template_show)</span></span>" : $filedesc;
    144        
     144
    145145        // If we have two files of the same name prefer the one in the Template Directory
    146146        // This means that we display the correct files for child themes which overload Templates as well as Styles
    147147        if( array_key_exists($description, $template_mapping ) ) {
    148             if ( false !== strpos( $template_file, $template_dir ) )  { 
     148            if ( false !== strpos( $template_file, $template_dir ) )  {
    149149                $template_mapping[ $description ] = array( $template_file, $filedesc );
    150150            }
Note: See TracChangeset for help on using the changeset viewer.