summaryrefslogtreecommitdiff
path: root/includes/database/schema.inc
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-11-01 20:39:29 -0400
committerDavid Rothstein <drothstein@gmail.com>2014-11-01 20:39:29 -0400
commit90687ab52679427a3889d45c747fb401bc419294 (patch)
tree7ca7331a22f8eaf421a5f01e8e3dab27e6e35e29 /includes/database/schema.inc
parentea1c7a94418526cf2298dcd6011a5995e626f3d5 (diff)
downloadbrdo-90687ab52679427a3889d45c747fb401bc419294.tar.gz
brdo-90687ab52679427a3889d45c747fb401bc419294.tar.bz2
Issue #780304 by dcam, naxoc, Crell | zyxware: Fixed HTML encoding of em wrappers for database table names while showing schema errors.
Diffstat (limited to 'includes/database/schema.inc')
-rw-r--r--includes/database/schema.inc2
1 files changed, 1 insertions, 1 deletions
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) {