Update srvinterface.class.php

"return array" should be used instead of "return aray"
This commit is contained in:
cobravsninja 2018-02-26 20:21:43 +04:00 committed by GitHub
parent 5d9e262466
commit 9b805c7a2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ class srvinterface {
$ast_out = substr($matches[0], 9, -1);
return explode(' ', $ast_out);
} else {
return aray('unknown');
return array('unknown');
}
}