some changes merged from wrong branch... new function channel_reddress() instead of hardwired generation and which fixes case-sensitivity; allow dot notation in config and pconfig utils, updated string file

This commit is contained in:
redmatrix
2016-09-17 14:51:57 -07:00
parent 31df7af61f
commit 0754da58da
9 changed files with 3848 additions and 3832 deletions

View File

@@ -48,7 +48,11 @@ EndOfOutput;
return;
}
if($argc > 1 && strpos($argv[1],'.')) {
$x = explode('.',$argv[1]);
$argv = [ $argv[0], $x[0], $x[1], (($argc > 2) ? $argv[2] : null) ];
$argc = $argc + 1;
}
if($argc > 3) {
set_config($argv[1],$argv[2],$argv[3]);

File diff suppressed because it is too large Load Diff

View File

@@ -54,6 +54,13 @@ EndOfOutput;
}
if($argc > 2 && strpos($argv[2],'.')) {
$x = explode('.',$argv[2]);
$argv = [ $argv[0], $argv[1], $x[0], $x[1], (($argc > 3) ? $argv[3] : null) ];
$argc = $argc + 1;
}
if($argc > 4) {
set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]);
build_sync_packet($argv[1]);