Skip to content

Commit

Permalink
Bugfix: Org param not passing into function
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevanwinkle committed Jan 22, 2015
1 parent e17e135 commit e6db9c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/Terminus/Helpers/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function orglist() {

public static function orgname($args, $key, $default=null) {
if (isset($args[$key])) {
return $args['key'];
return $args[$key];
}

$orglist = Input::orglist();
Expand Down

0 comments on commit e6db9c0

Please sign in to comment.