Vergleich memberlist - 1.8.6 - 1.8.26

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 8Zeile 8
{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>

{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>

<td class="thead" colspan="7">

<td class="thead" colspan="{$colspan}">

	<div class="float_right">
<a href="memberlist.php?username_match=begins&amp;username={$lang->a}" style="padding: 5px;">{$lang->a}</a>
<a href="memberlist.php?username_match=begins&amp;username={$lang->b}" style="padding: 5px;">{$lang->b}</a>

	<div class="float_right">
<a href="memberlist.php?username_match=begins&amp;username={$lang->a}" style="padding: 5px;">{$lang->a}</a>
<a href="memberlist.php?username_match=begins&amp;username={$lang->b}" style="padding: 5px;">{$lang->b}</a>

Zeile 50Zeile 50
</tr>
{$users}
</table>

</tr>
{$users}
</table>

<div class="float_right" style="padding-top: 4px;">
<a href="showteam.php"><strong>{$lang->forumteam}</strong></a>
</div>

 
{$multipage}
<br class="clear" />
<br />

{$multipage}
<br class="clear" />
<br />

Zeile 73Zeile 70
</tr>
<tr>
<td class="trow1" width="33%" style="vertical-align: top;">

</tr>
<tr>
<td class="trow1" width="33%" style="vertical-align: top;">

		{$lang->contains}<br />

		{$lang->exactly}<br />

		<input type="text" class="textbox" name="username" id="username" style="width: 99%; margin-top: 4px;" value="{$search_username}" />
</td>
<td class="trow1" width="33%" style="vertical-align: top;">

		<input type="text" class="textbox" name="username" id="username" style="width: 99%; margin-top: 4px;" value="{$search_username}" />
</td>
<td class="trow1" width="33%" style="vertical-align: top;">

Zeile 91Zeile 88
			<option value="lastvisit"{$sort_selected['lastvisit']}>{$lang->sort_by_lastvisit}</option>
<option value="postnum"{$sort_selected['postnum']}>{$lang->sort_by_posts}</option>
<option value="threadnum"{$sort_selected['threadnum']}>{$lang->sort_by_threads}</option>

			<option value="lastvisit"{$sort_selected['lastvisit']}>{$lang->sort_by_lastvisit}</option>
<option value="postnum"{$sort_selected['postnum']}>{$lang->sort_by_posts}</option>
<option value="threadnum"{$sort_selected['threadnum']}>{$lang->sort_by_threads}</option>

			<option value="referrals"{$sort_selected['referrals']}>{$lang->sort_by_referrals}</option>

			{$referrals_option}

		</select>
</td>
</tr>

		</select>
</td>
</tr>

Zeile 99Zeile 96
<div align="center"><br /><input type="submit" class="button" name="submit" value="{$lang->search}" /></div>
</form>
{$footer}

<div align="center"><br /><input type="submit" class="button" name="submit" value="{$lang->search}" /></div>
</form>
{$footer}

<link rel="stylesheet" href="{$mybb->asset_url}/jscripts/select2/select2.css?ver=1806">

<link rel="stylesheet" href="{$mybb->asset_url}/jscripts/select2/select2.css?ver=1807">

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/select2/select2.min.js?ver=1806"></script>
<script type="text/javascript">
<!--

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/select2/select2.min.js?ver=1806"></script>
<script type="text/javascript">
<!--

Zeile 108Zeile 105
	MyBB.select2();
$("#username").select2({
placeholder: "{$lang->search_user}",

	MyBB.select2();
$("#username").select2({
placeholder: "{$lang->search_user}",

		minimumInputLength: 3,
maximumSelectionSize: 3,

		minimumInputLength: 2,


		multiple: false,

		multiple: false,

 
		allowClear: true,

		ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: "xmlhttp.php?action=get_users",
dataType: 'json',

		ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: "xmlhttp.php?action=get_users",
dataType: 'json',

Zeile 143Zeile 140
		},
});


		},
});


  	$('[for=username]').click(function(){

  	$('[for=username]').on('click', function(){

		$("#username").select2('open');
return false;
});

		$("#username").select2('open');
return false;
});