I have replaced the glyphicons-halflings-regular.woff/eot/svg/ttf files with the latest, but I still can't get the glyphicon-earphone to work. I get a thin rectangle with an open bottom instead. Same goes for glyphicon-phone-alt, but most others work perfectly.
I tried to reproduce the issue on Bootply.com, but it works as expected there. Regardless, here is the link and code.
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="phone">Phone</label>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-earphone"></i></span>
<input type="text" class="form-control" name="phone" id="contact_phone">
</div>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="cell">Cell</label>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-phone"></i></span>
<input type="text" class="form-control" name="cell" id="contact_cell">
</div>
</div>
</div>
</div>
Is this a bug in Bootstrap 3.0.0? If so - I guess the Bootply site has applied a 'patch/fix' for 3.0.0?