Update blueweather.php

This commit is contained in:
Dorian Zedler 2019-09-02 11:08:53 +00:00
parent 5f5ac6eb97
commit 854d77b515

View file

@ -129,6 +129,8 @@ class BlueWeather
// only one row will be returned // only one row will be returned
$data = $result->fetch_assoc(); $data = $result->fetch_assoc();
$data["emailHash"] = md5(strtolower(trim($data["email"])));
return($data); return($data);
} }