<td><span class="tooltip spanIcon ui-icon ui-icon-help" title="<?php 
echo Language::string(678);
?>
"></span></td>
            <td class="fullWidth">
                <div class="horizontalMargin">
                    <select id = "selectUserInviteeShareDialog" class = "fullWidth ui-widget-content ui-corner-all">
                        <option value = "0">&lt;<?php 
echo Language::string(650);
?>
&gt;</option>
                        <?php 
$sql = sprintf("SELECT * FROM `%s`.`%s` WHERE `id`!='%s' ORDER BY `lastname` ASC, `firstname` ASC", Ini::$db_master_name, User::get_mysql_table(), $owner->id);
$z = mysql_query($sql);
while ($r = mysql_fetch_array($z)) {
    $user = User::from_mysql_result($r);
    ?>
                            <option value="<?php 
    echo $user->id;
    ?>
" name="<?php 
    echo $user->get_full_name();
    ?>
" institution="<?php 
    echo $user->institution_name;
    ?>
" <?php 
    echo $_POST['current_invitee_id'] == $user->id ? "selected" : "";
    ?>
><?php 
    echo $user->get_full_description();