In wp-admin when I enter widgets I see their bars, but the titles of widgets are missing. only :Something remain visible and the others are gone.
What happened? How do I fix that?
Edit:
Found it in wp-admin/includes/widgets.php
line that was
<div class="widget-title"><h4><?php $widget_title ?><span class="in-widget-title"></span></h4></div>
should be
<div class="widget-title"><h4><?php echo $widget_title ?><span class="in-widget-title"></span></h4></div>
Is that a wordpress bug or somebody on my team had to edit this? [noone takes the blame ;)]
