diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-29 15:13:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-29 15:13:57 +0000 |
commit | cef10893892a1c40f73fd972969c3512b0983cd6 (patch) | |
tree | c295a5dea1cc8f5d0ced7e7c967c70cf34f33c73 /modules/statistics/statistics.install | |
parent | 0a0b067c2404b041454cc7a5fc8cfbbb9ecd6027 (diff) | |
download | brdo-cef10893892a1c40f73fd972969c3512b0983cd6.tar.gz brdo-cef10893892a1c40f73fd972969c3512b0983cd6.tar.bz2 |
- Patch #570900 by Crell | asimmonds: Changed Destroy remnants of update_sql().
Diffstat (limited to 'modules/statistics/statistics.install')
-rw-r--r-- | modules/statistics/statistics.install | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/statistics/statistics.install b/modules/statistics/statistics.install index 396faab80..5fd499707 100644 --- a/modules/statistics/statistics.install +++ b/modules/statistics/statistics.install @@ -142,9 +142,7 @@ function statistics_schema() { * Allow longer referrers. */ function statistics_update_7000() { - $ret = array(); - db_change_field($ret, 'accesslog', 'url', 'url', array('type' => 'text', 'not null' => FALSE)); - return $ret; + db_change_field('accesslog', 'url', 'url', array('type' => 'text', 'not null' => FALSE)); } /** |