You are here

function gotwo_update_7100 in Go - url redirects 7

Validate maximum length of target labels setting.

File

./gotwo.install, line 110
Installation script for the gotwo.module

Code

function gotwo_update_7100() {
  $max_length = min(variable_get('gotwo_max_length', 128), 128);
  variable_set('gotwo_max_length', $max_length);
  return t('Maximum length of target labels setting may has been reduced to max 128.');
}