Make WordPress Core

Ticket #5515: export.php.r6475.diff

File export.php.r6475.diff, 520 bytes (added by RanYanivHartstein, 18 years ago)

Patch to avoid clashin string in wp-admin/export.php

  • export.php

     
    2626<th><?php _e('Restrict Author:'); ?></th>
    2727<td>
    2828<select name="author">
    29 <option value="all" selected="selected"><?php _e('All'); ?></option>
     29<option value="all" selected="selected"><?php _e('All Authors'); ?></option>
    3030<?php
    3131$authors = $wpdb->get_col( "SELECT post_author FROM $wpdb->posts GROUP BY post_author" );
    3232foreach ( $authors as $id ) {