Zeile 30 | Zeile 30 |
---|
<input type="text" class="textbox" name="website" id="website" /> </td> </tr>
|
<input type="text" class="textbox" name="website" id="website" /> </td> </tr>
|
<tr> <td class="trow1" width="20%"><strong><label for="aim">{$lang->search_aim}</label></strong></td> <td class="trow1"> <input type="text" class="textbox" name="aim" id="aim" /> </td> </tr> <tr> <td class="trow1" width="20%"><strong><label for="skype">{$lang->search_skype}</label></strong></td> <td class="trow1"> <input type="text" class="textbox" name="skype" id="skype" /> </td> </tr> <tr> <td class="trow1" width="20%"><strong><label for="google">{$lang->search_google}</label></strong></td> <td class="trow1"> <input type="text" class="textbox" name="google" id="google" /> </td> </tr> <tr> <td class="trow1" width="20%"><strong><label for="yahoo">{$lang->search_yahoo}</label></strong></td> <td class="trow1"> <input type="text" class="textbox" name="yahoo" id="yahoo" /> </td> </tr> <tr> <td class="trow1" width="20%"><strong><label for="icq">{$lang->search_icq}</label></strong></td> <td class="trow1"> <input type="text" class="textbox" name="icq" id="icq" /> </td> </tr>
| {$contact_fields['aim']} {$contact_fields['skype']} {$contact_fields['google']} {$contact_fields['yahoo']} {$contact_fields['icq']}
|
<tr> <td class="tcat" colspan="2"><strong>{$lang->search_options}</strong></td> </tr>
| <tr> <td class="tcat" colspan="2"><strong>{$lang->search_options}</strong></td> </tr>
|
Zeile 90 | Zeile 65 |
---|
<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"> <script type="text/javascript" src="{$mybb->asset_url}/jscripts/select2/select2.min.js"></script>
| <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"> <!-- if(use_xmlhttprequest == "1")
| <script type="text/javascript"> <!-- if(use_xmlhttprequest == "1")
|
Zeile 99 | Zeile 74 |
---|
MyBB.select2(); $("#username").select2({ placeholder: "{$lang->search_user}",
|
MyBB.select2(); $("#username").select2({ placeholder: "{$lang->search_user}",
|
minimumInputLength: 3, maximumSelectionSize: 3,
| minimumInputLength: 2,
|
multiple: false, ajax: { // instead of writing the function to execute the request we use Select2's convenient helper url: "xmlhttp.php?action=get_users",
| multiple: false, ajax: { // instead of writing the function to execute the request we use Select2's convenient helper url: "xmlhttp.php?action=get_users",
|
Zeile 132 | Zeile 106 |
---|
return {id:term, text:term}; } },
|
return {id:term, text:term}; } },
|
| });
$('[for=username]').click(function(){ $("#username").select2('open'); return false;
|
}); } // -->
| }); } // -->
|