1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Merge pull request #985 from Links2004/docu

add missing exit in php sample
This commit is contained in:
Markus 2015-11-08 23:04:52 +01:00
commit 7384c3814b

View File

@ -142,6 +142,7 @@ if(isset($db[$_SERVER['HTTP_X_ESP8266_STA_MAC']])) {
} else { } else {
header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified', true, 304); header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified', true, 304);
} }
exit();
} }
header($_SERVER["SERVER_PROTOCOL"].' 500 no version for ESP MAC', true, 500); header($_SERVER["SERVER_PROTOCOL"].' 500 no version for ESP MAC', true, 500);