Changeset 10810 for trunk/wp-admin/includes/template.php
- Timestamp:
- 03/18/2009 02:43:45 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r10788 r10810 369 369 * 370 370 * Compares the first two arguments and if identical marks as checked 371 * 371 * 372 372 * @since unknown 373 373 * … … 382 382 /** 383 383 * Outputs the html selected attribute. 384 * 384 * 385 385 * Compares the first two arguments and if identical marks as selected 386 386 * … … 397 397 /** 398 398 * Private helper function for checked and selected. 399 * 399 * 400 400 * Compares the first two arguments and if identical marks as $type 401 401 * … … 413 413 else 414 414 $result = ''; 415 415 416 416 if ($echo) 417 417 echo $result; 418 418 419 419 return $result; 420 420 } … … 2752 2752 if ( ! empty( $upload_dir['error'] ) ) : 2753 2753 ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:'); ?></p> 2754 <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php 2755 else : 2754 <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php 2755 else : 2756 2756 ?> 2757 2757 <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo attribute_escape($action) ?>"> … … 3474 3474 return ''; 3475 3475 } 3476 3476 3477 3477 if ( ! $screen_layout_columns ) 3478 3478 $screen_layout_columns = 2;
Note: See TracChangeset
for help on using the changeset viewer.