diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-28 11:45:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-28 11:45:11 +0000 |
commit | a08c9696694cee8a41effd7cb6527f9d1e9ca5e0 (patch) | |
tree | 890d8ac23afb9c5d25c42c2ac18a1feffad8a388 /modules/system/system.install | |
parent | 00ecc0a208cf498c7e5e2e734364f62509f1be6e (diff) | |
download | brdo-a08c9696694cee8a41effd7cb6527f9d1e9ca5e0.tar.gz brdo-a08c9696694cee8a41effd7cb6527f9d1e9ca5e0.tar.bz2 |
- Patch #728338 by sun, Crell: standardize on 'field' in function names. 'It has to get worse before it can get better.'
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index bdef35d5c..48db779e9 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1549,7 +1549,7 @@ function system_update_6050() { */ function system_update_6051() { - if (!db_column_exists('users', 'signature_format')) { + if (!db_field_exists('users', 'signature_format')) { // Set future text formats to FILTER_FORMAT_DEFAULT to ensure a safe default // when incompatible modules insert into the users table. An actual format @@ -2230,7 +2230,7 @@ function system_update_7036() { } $insert->execute(); - // Remove obsolete variable 'site_offline_message'. See + // Remove obsolete variable 'site_offline_message'. See // update_fix_d7_requirements(). variable_del('site_offline_message'); } |