Skip to content

Commit

Permalink
Remove unnecessary sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Sep 18, 2013
1 parent 5d509e2 commit 72965f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Cache/Engine/MemcachedEngine.php
Expand Up @@ -134,7 +134,7 @@ protected function _setOptions() {

if (!array_key_exists($this->settings['serializer'], self::$serializer)) {
throw new CacheException(
__d('cake_dev', sprintf('%s is not a valid serializer engine for Memcached', $this->settings['serializer']))
__d('cake_dev', '%s is not a valid serializer engine for Memcached', $this->settings['serializer'])
);
}

Expand Down

0 comments on commit 72965f7

Please sign in to comment.