Skip to content

Commit

Permalink
Merge pull request MeetMe#1 from bkw/master
Browse files Browse the repository at this point in the history
correct variable names for cachekey
  • Loading branch information
Gavin M. Roy committed May 18, 2011
2 parents 25d86fd + 7a2b1ff commit ce5bf76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vorpalbunny.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function __construct( $host, $port = 55672, $user = 'guest', $pass = 'guest', $v
}

// Construct the APC cache key we'll use in init and elsewhere
$this->cacheKey = self::$apcPrefix . $username . ':' . $password . '@' . $host . ':' . $port . $vhost;
$this->cacheKey = self::$apcPrefix . $user . ':' . $pass . '@' . $host . ':' . $port . $vhost;

// Create our Base URL
$this->baseURL = 'http://' . $host . ':' . $port . '/rpc/';
Expand Down

0 comments on commit ce5bf76

Please sign in to comment.