From 9708f9fc3e7dfc85f3f9be3e34836c2bc16f28ce Mon Sep 17 00:00:00 2001
From: Jesse Beach <splendidnoise@gmail.com>
Date: Tue, 21 Feb 2012 00:05:16 -0500
Subject: [PATCH] Issue #1447678 by jessebeach: drupal_placeholder should use
 non-semantic <span> instead of semantic <em>

Signed-off-by: Jesse Beach <splendidnoise@gmail.com>
---
 core/includes/bootstrap.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index ab06260..4583c0b 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -3407,7 +3407,7 @@ function drupal_is_cli() {
  *   The formatted text (html).
  */
 function drupal_placeholder($text) {
-  return '<em class="placeholder">' . check_plain($text) . '</em>';
+  return '<span class="placeholder">' . check_plain($text) . '</span>';
 }
 
 /**
-- 
1.7.8.2

