bugfixing ysf reflector detection in repeater info

This commit is contained in:
Kim Huebel 2018-02-18 14:14:53 +00:00
parent 42a98ddb4d
commit 361dcd6fc8
2 changed files with 2 additions and 2 deletions

View file

@ -860,7 +860,7 @@ function getYSFReflectorById($id, $reflectors) {
return _("YSFGateway not running");
} else {
foreach($reflectors as $reflector) {
if ($reflector[2] === $id) {
if ($reflector[3] === $id) {
return $reflector[0];
}
}

View file

@ -1,3 +1,3 @@
<?php
define("VERSION", "20180218-1 (".getGitVersion().")");
define("VERSION", "20180218-3 (".getGitVersion().")");
?>