Changeset 14628 for trunk/wp-admin/custom-background.php
- Timestamp:
- 05/14/2010 08:20:06 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r14624 r14628 156 156 <td> 157 157 <?php 158 $background_styles = "background-color: #" . get_background_color() . ";"; 158 $background_styles = ''; 159 if ( get_background_color() ) { 160 $background_styles .= "background-color: #" . get_background_color() . ";"; 161 } 159 162 160 163 if ( get_background_image() ) { … … 203 206 <tr valign="top"> 204 207 <th scope="row"><?php _e('Upload Image'); ?></th> 205 <td><form enctype="multipart/form-data" id="uploadForm" method=" POST" action="">208 <td><form enctype="multipart/form-data" id="uploadForm" method="post" action=""> 206 209 <label for="upload"><?php _e('Choose an image from your computer:'); ?></label><br /><input type="file" id="upload" name="import" /> 207 210 <input type="hidden" name="action" value="save" />
Note: See TracChangeset
for help on using the changeset viewer.