function fb_autopost_update_7100 in Facebook Autopost 7
Implements hook_update_N().
File
- ./
fb_autopost.install, line 87 - Install file to support fb_autopost.module
Code
function fb_autopost_update_7100(&$sandbox) {
// Fixes typo in variable name.
variable_set('fb_autopost_app_id', variable_get('fb_autopos_app_id', ''));
variable_set('fb_autopost_app_secret', variable_get('fb_autopos_app_secret', ''));
variable_del('fb_autopos_app_id');
variable_del('fb_autopos_app_secret');
}