diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-06-22 13:21:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-06-22 13:21:38 +0000 |
commit | fabaaaaa6e065b1f8f89c00b31b947fa7861d13c (patch) | |
tree | c9cb0fdb1b99300edeb7b943ffb8eb9bbab7d759 /modules/blogapi | |
parent | f96c141f5aa99ed414eba4e0a520e5b4d9f91b76 (diff) | |
download | brdo-fabaaaaa6e065b1f8f89c00b31b947fa7861d13c.tar.gz brdo-fabaaaaa6e065b1f8f89c00b31b947fa7861d13c.tar.bz2 |
- Patch #278592 by catch, Dave Reid, lilou et al: remove D5 to D6 updates.
Diffstat (limited to 'modules/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.install | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/blogapi/blogapi.install b/modules/blogapi/blogapi.install index e0c9618ce..2bbcd57a3 100644 --- a/modules/blogapi/blogapi.install +++ b/modules/blogapi/blogapi.install @@ -67,37 +67,3 @@ function blogapi_schema() { return $schema; } - -/** - * @defgroup updates-5.x-to-6.x Blog API updates from 5.x to 6.x - * @{ - */ - -/** - * Inform users about the new permission. - */ -function blogapi_update_6000() { - drupal_set_message("Blog API module does not depend on blog module's permissions anymore, but provides its own 'administer content with blog api' permission instead. Until <a href=\"" . url('admin/user/permissions', array('fragment' => 'module-blogapi')) . '">this permission is assigned</a> to at least one user role, only the site administrator will be able to use Blog API features.'); - return array(); -} - -/** - * Add blogapi_files table to enable size restriction for BlogAPI file uploads. - * - * This table was introduced in Drupal 6.4. - */ -function blogapi_update_6001() { - $ret = array(); - - if (!db_table_exists('blogapi_files')) { - $schema = blogapi_schema(); - db_create_table($ret, 'blogapi_files', $schema['blogapi_files']); - } - - return $ret; -} - -/** - * @} End of "defgroup updates-5.x-to-6.x" - * The next series of updates should start at 7000. - */ |