Index: .
===================================================================
--- .	(revision 18922)
+++ .	(working copy)
@@ -1430,6 +1430,26 @@
 }
 
 /**
+ * Check if Display Text is True
+ * 
+ * Conditional check to determine if the 
+ * user has enabled the Display Text 
+ * option. Returns TRUE or FALSE based 
+ * on the value returned by get_header_textcolor(). 
+ * If get_header_textcolor() returns 'blank' 
+ * then display_header_text() returns FALSE; 
+ * otherwise, returns true.
+ * 
+ * @uses	get_header_textcolor()
+ * @return	boolean
+ * @since	3.3.1
+ */
+function display_header_text() {
+	$display_header_text = ( 'blank' != get_header_textcolor() ? true : false );
+	return $display_header_text;
+}
+
+/**
  * Retrieve header image for custom header.
  *
  * @since 2.1.0
