DeltaLima
84c4840993
I have a bug on the /system/ page, I also noticed it on /wifi/ page sometimes, not reproducable everytime. So i am glad, the bug also appears here 100% reproducable I inserted `<li><a class='' href='/system/sensor/'>🌡️ Sensor configuration</a></li>` to the /system/ html template. With this included, the template processor will corrupt the final output when processing %FOOTER%, which got inserted from AddHeaderFooter() function. the rendered output, damaged, looks like this ``` <input type='submit' value='💾 Save settings'> </form> <div cla%</span></div> </div></body></html> ``` notice that the div on the second last line is broken at `class` - got `<div cla%</span></div>`. It should look like this: ``` <input type='submit' value='💾 Save settings'> </form> <div class='footer'><span>Build: 92724fa-esp8266-20241102171544</span></div> </div></body></html> ``` |
||
---|---|---|
.. | ||
CanGrow |