Use get_users_of_blog in MT importer to be MS and shared user table friendly. props lloydbudd, fixes #13356.

git-svn-id: http://svn.automattic.com/wordpress/trunk@14570 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-11 19:19:59 +00:00
parent 321b1a613f
commit 00c831f44a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class MT_Import {
function users_form($n) {
global $wpdb;
$users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY ID");
$users = get_users_of_blog();
?><select name="userselect[<?php echo $n; ?>]">
<option value="#NONE#"><?php _e('&mdash; Select &mdash;') ?></option>
<?php