Skip to content

Commit

Permalink
Merge branch 'fix_memcache' of https://github.com/libo/php-activerecord
Browse files Browse the repository at this point in the history
… into libo-fix_memcache
  • Loading branch information
jpfuentes2 committed Feb 27, 2011
2 parents 6949f8a + d99a346 commit 90f7e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cache/Memcache.php
Expand Up @@ -9,7 +9,7 @@ public function __construct($options)
{
$this->memcache = new \Memcache();

if (!$this->memcache->connect($options['host']))
if (!$this->memcache->connect($options['host'],$options['port']))
throw new CacheException("Could not connect to $options[host]:$options[port]");
}

Expand Down

0 comments on commit 90f7e17

Please sign in to comment.