Wp-admin widgets have no title texts

Just to make sure, I took a look in the actual source code of the WordPress repository. The line in question is:

<div class="widget-title"><h4><?php echo $widget_title ?><span class="in-widget-title"></span></h4></div>

I also went through and checked previous changesets to see if we ever accidentally released broken code. If you want to look at the revision log yourself, it’s freely available on Trac.

But the long story made short is that you weren’t seeing a WordPress bug. Someone on your team would have had to explicitly made that change … even if they weren’t willing to take the blame.

All the more reason you should be keeping everything under source control. Then you’d know exactly who made the change, when, and possibly have some idea as to why.

tech