diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-11 07:30:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-11 07:30:40 +0000 |
commit | 039d508cd0d4a7a4f878e9161a2332531a149c6f (patch) | |
tree | 845716dd024f51745dc5c97da6bda8ac1f879b1e | |
parent | c059a6d9841ae1ba90464699a5a1f3f017860f8c (diff) | |
download | brdo-039d508cd0d4a7a4f878e9161a2332531a149c6f.tar.gz brdo-039d508cd0d4a7a4f878e9161a2332531a149c6f.tar.bz2 |
- Patch #150762 by hunmonk: fixed typo.
-rw-r--r-- | modules/locale/locale.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.install b/modules/locale/locale.install index 309e9d57f..540efb83b 100644 --- a/modules/locale/locale.install +++ b/modules/locale/locale.install @@ -96,7 +96,7 @@ function locale_update_6002() { */ function locale_update_6003() { $ret = array(); - db_add_field($rest, 'languages', 'javascript', array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '')); + db_add_field($ret, 'languages', 'javascript', array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => '')); return $ret; } |