Skip to content

Commit e6db9c0

Browse files
committed
Bugfix: Org param not passing into function
1 parent e17e135 commit e6db9c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/Terminus/Helpers/Input.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static function orglist() {
3535

3636
public static function orgname($args, $key, $default=null) {
3737
if (isset($args[$key])) {
38-
return $args['key'];
38+
return $args[$key];
3939
}
4040

4141
$orglist = Input::orglist();

0 commit comments

Comments
 (0)