Skip to content

Commit

Permalink
Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
neeckeloo committed Jan 9, 2013
1 parent 5b80e06 commit fa7ac12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Cache/Storage/Adapter/ZendServerShm.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected function zdcStore($internalKey, $value, $ttl)
if (!zend_shm_cache_store($internalKey, $value, $ttl)) {
$valueType = gettype($value);
throw new Exception\RuntimeException(
"zend_disk_cache_store($internalKey, <{$valueType}>, {$ttl}) failed"
"zend_shm_cache_store($internalKey, <{$valueType}>, {$ttl}) failed"
);
}
}
Expand Down

0 comments on commit fa7ac12

Please sign in to comment.