Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/16d9fe078f4b447a350cd1ed40286d01b8fef968?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

AutoConnectRadio indexer has incorrectly 0-based. (Issue #65)

pull/66/head
Hieromon Ikasamo 6 years ago
parent f0742a72f4
commit 16d9fe078f
  1. 2
      src/AutoConnectElementBasisImpl.h

@ -186,7 +186,7 @@ const String AutoConnectRadioBasis::toHTML(void) const {
n++; n++;
String id = name + "_" + String(n); String id = name + "_" + String(n);
html += String(F("<input type=\"radio\" name=\"")) + name + String(F("\" id=\"")) + id + String(F("\" value=\"")) + value + String("\""); html += String(F("<input type=\"radio\" name=\"")) + name + String(F("\" id=\"")) + id + String(F("\" value=\"")) + value + String("\"");
if (n == checked - 1) if (n == checked)
html += String(F(" checked")); html += String(F(" checked"));
html += String(F("><label for=\"")) + id + String("\">") + value + String(F("</label>")); html += String(F("><label for=\"")) + id + String("\">") + value + String(F("</label>"));
if (order == AC_Vertical) if (order == AC_Vertical)

Loading…
Cancel
Save