diff --git a/schema.module b/schema.module index 9ede16e93d7aacc311b4ad1769ff35695eee5115..f6afd85a86558261576bd5c3dacccec0f722d6c2 100755 --- a/schema.module +++ b/schema.module @@ -361,7 +361,7 @@ function schema_engine_type($col, $table, $field, $engine = NULL) { return $map[$type]; } else { - trigger_error(t('%table.%field: no %engine type for Schema type %type.', array('%engine' => $engine, '%type' => $type, '%table' => $table, '%field' => $field)), E_USER_WARNING); + trigger_error(t('@table.@field: no @engine type for schema type @type.', array('@engine' => $engine, '@type' => $type, '@table' => $table, '@field' => $field)), E_USER_WARNING); return $col['type']; } } @@ -377,7 +377,7 @@ function schema_schema_type($type, $table, $field, $engine = NULL) { } else { if (!variable_get('schema_suppress_type_warnings', FALSE)) { - trigger_error(t('Field @table.@field: no Schema type for @engine type @type.', array('@engine' => $engine, '@type' => $type, '@table' => $table, '@field' => $field)), E_USER_WARNING); + trigger_error(t('@table.@field: no schema type for @engine type @type.', array('@engine' => $engine, '@type' => $type, '@table' => $table, '@field' => $field)), E_USER_WARNING); } return array($type, 'normal'); }