From 537bc12e145e36ad3c60b49a6481ed0542df0356 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 24 Nov 2007 04:38:36 +0000 Subject: [PATCH] Really allow command arguments from pfSsh.php --- etc/phpshellsessions/cvssync | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/phpshellsessions/cvssync b/etc/phpshellsessions/cvssync index 9cea3fe8d7..51d3d9fe72 100644 --- a/etc/phpshellsessions/cvssync +++ b/etc/phpshellsessions/cvssync @@ -44,8 +44,9 @@ global $command_split; $branches = array("HEAD" => "Main development branch", "RELENG_1" => "1.2 Release branch", "RELENG_1_2" => "1.3 development branch"); -if($command_split[3]) { - $branch = $command_split[3]; + +if($command_split[2]) { + $branch = $command_split[2]; } else { if(!$argv[3]) { echo "\nPlease select which branch you would like:\n\n";