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:
@@ -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]);
|
||||
|
7646
util/hmessages.po
7646
util/hmessages.po
File diff suppressed because it is too large
Load Diff
@@ -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]);
|
||||
|
Reference in New Issue
Block a user