Skip to content

Commit

Permalink
Add image name to GUI footer
Browse files Browse the repository at this point in the history
  • Loading branch information
arendst committed Nov 13, 2023
1 parent 0ee62e5 commit 7e384eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ const char HTTP_COUNTER[] PROGMEM =
"<br><div id='t' style='text-align:center;'></div>";

const char HTTP_END[] PROGMEM =
"<div style='text-align:right;font-size:11px;'><hr/><a href='https://bit.ly/tasmota' target='_blank' style='color:#aaa;'>Tasmota %s " D_BY " Theo Arends</a></div>"
"<div style='text-align:right;font-size:11px;'><hr/><a href='https://bit.ly/tasmota' target='_blank' style='color:#aaa;'>Tasmota %s%s " D_BY " Theo Arends</a></div>"
"</div>"
"</body>"
"</html>";
Expand Down Expand Up @@ -1005,7 +1005,7 @@ void WSContentStop(void) {
WSContentSend_P(HTTP_COUNTER);
}
}
WSContentSend_P(HTTP_END, TasmotaGlobal.version);
WSContentSend_P(HTTP_END, TasmotaGlobal.version, TasmotaGlobal.image_name);
WSContentEnd();
}

Expand Down

0 comments on commit 7e384eb

Please sign in to comment.