diff --git a/README.md b/README.md
index a154deb..01743d4 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,8 @@ It relies on MMDVMHost by G4KLX (see https://github.com/g4klx/MMDVMHost). At
this place a big thank you to Jonathan for his great work he did with this
software.
+Based on G4KLX code, mod by EA4GKQ
+
Required are
============
* Webserver like
@@ -41,6 +43,14 @@ At the moment there are several information-sections shown:
* Today's last 10 local transmissions:
For better debugging/calibrating etc. the last 10 local transmissions (RF-side of the repeater) are listed.
+New features by EA4GKQ
+======================
+* Buttons toolbar
+* LastHeard table are sorted
+* Some mods to improve mobile experience
+
Contact
=======
-Feel free to contact the author via email: dg9vh@darc.de
\ No newline at end of file
+Feel free to contact the author via email: dg9vh[@]darc.de
+
+Feel free to contact the mod author via email: ea4gkq[@]ure.es
diff --git a/include/functions.php b/include/functions.php
index 4fb1635..d18b610 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -227,7 +227,7 @@ function getHeardList($logLines) {
$target = substr($logLine, strpos($logLine, "to") + 3);
$source = "RF";
if (strpos($logLine,"network") > 0 ) {
- $source = "Network";
+ $source = "Net";
}
switch ($mode) {
diff --git a/include/lh.php b/include/lh.php
index 710a757..eba90dd 100644
--- a/include/lh.php
+++ b/include/lh.php
@@ -1,10 +1,13 @@