From 90687ab52679427a3889d45c747fb401bc419294 Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Sat, 1 Nov 2014 20:39:29 -0400 Subject: Issue #780304 by dcam, naxoc, Crell | zyxware: Fixed HTML encoding of em wrappers for database table names while showing schema errors. --- includes/database/schema.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/database/schema.inc') diff --git a/includes/database/schema.inc b/includes/database/schema.inc index 68843a49c..1fc92954a 100644 --- a/includes/database/schema.inc +++ b/includes/database/schema.inc @@ -654,7 +654,7 @@ abstract class DatabaseSchema implements QueryPlaceholderInterface { */ public function createTable($name, $table) { if ($this->tableExists($name)) { - throw new DatabaseSchemaObjectExistsException(t('Table %name already exists.', array('%name' => $name))); + throw new DatabaseSchemaObjectExistsException(t('Table @name already exists.', array('@name' => $name))); } $statements = $this->createTableSql($name, $table); foreach ($statements as $statement) { -- cgit v1.2.3