function follow_update_7005 in Follow 7.2
<none> is no longer supported in titles, so remove it. If you would like to hide the titles of the follow links, configure the appropriate block instead.
File
- ./
follow.install, line 136 - Follow module's install and uninstall code.
Code
function follow_update_7005() {
$query = db_update('follow_links')
->fields(array(
'title' => '',
))
->condition('title', '<none>');
$query
->execute();
}