diff options
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. - */ |