For some reasons you decided to put limitation of possible ID size equal to 7symbols:

<input id="edit-getresponse-webformid" class="form-text valid" type="text" maxlength="7" size="0" value="" name="getresponse_webformid" kl_virtual_keyboard_secure_input="on">

But now you already have forms in your system with 8symbols in ID, so in my case I simply can't enter my ID, just part of it. So I need to change code of the module to remove this limitation.

Comments

Wombat_Dmitriy’s picture

Assigned: Wombat_Dmitriy » Unassigned
Khachik’s picture

Thanks for the post. It saved me lot of time. But it seems that ID size limitation code now is inside getresponse.module file and looks like:

$form['left']['settings']['getresponse_webformid'] = array(
    '#type' => 'textfield',
    '#title' => t("Web form ID:"),
    '#default_value' => variable_get('getresponse_webformid', ''),
    '#size' => 0,
    '#maxlength' => 7,
    '#description' => t("(leave empty to disable)"),
  );

changing the "7" to "8" will work with current GetResponse webform IDs.

pawelmaslak’s picture

This issue is already deprecated because new version do not use web form id.

pawelmaslak’s picture

Status: Active » Closed (fixed)