6.x-2.x upgrades. */ /** * Delete the pathauto_node_supportsfeeds. */ function pathauto_update_3() { // Do nothing, this update was a mistake return array(); } /** * New style naming for the punctuation chars. */ function pathauto_update_4() { variable_set('pathauto_punctuation_quotes', variable_get('pathauto_quotes', 0)); variable_del('pathauto_quotes'); return array(); } /** * Remove the url_alias_extra table which wasn't used. */ function pathauto_update_7() { $ret = array(); if (db_table_exists('url_alias_extra')) { db_drop_table($ret, 'url_alias_extra'); } return $ret; }