From 9adeb532c80afc591d9beb1cbbcbabbd5bf86b6b Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 10 May 2017 11:19:29 +0200 Subject: [PATCH] Revert groupfixrelnames to original state --- Changelog | 1 + misc/update/nix/tmux/bin/groupfixrelnames.php | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index ef19f5b55..fd4454509 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2017-05-10 DariusIII + * Chg: Revert groupfixrelnames to original state * Chg: Use list to assign values to $pieces array * Chg: Add PHPDOC blocks to Forking class functions 2017-05-09 DariusIII diff --git a/misc/update/nix/tmux/bin/groupfixrelnames.php b/misc/update/nix/tmux/bin/groupfixrelnames.php index 9150e1e4c..fd85d66be 100644 --- a/misc/update/nix/tmux/bin/groupfixrelnames.php +++ b/misc/update/nix/tmux/bin/groupfixrelnames.php @@ -20,7 +20,10 @@ if (!isset($argv[1])) { } $namefixer = new NameFixer(['Settings' => $pdo]); $sorter = new MiscSorter(true, $pdo); -list($guidChar, $maxperrun, $thread) = explode(' ', $argv[1]); +$pieces = explode(' ', $argv[1]); +$guidChar = $pieces[1]; +$maxperrun = $pieces[2]; +$thread = $pieces[3]; switch (true) {