diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-07 17:44:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-07 17:44:53 +0000 |
commit | 2a3d1886926b9e2e733651001935e0bf5501dcc0 (patch) | |
tree | 40c43035f019d6911fdf30036567e92e73df5605 | |
parent | 8ec03b66888de88c048ee3eda5fbbcc8789482d6 (diff) | |
download | brdo-2a3d1886926b9e2e733651001935e0bf5501dcc0.tar.gz brdo-2a3d1886926b9e2e733651001935e0bf5501dcc0.tar.bz2 |
- Patch #933792 by droplet: cache clear all - wrong documentation.
-rw-r--r-- | includes/cache.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cache.inc b/includes/cache.inc index 2a729eff5..babf33f55 100644 --- a/includes/cache.inc +++ b/includes/cache.inc @@ -155,7 +155,7 @@ function cache_set($cid, $data, $bin = 'cache', $expire = CACHE_PERMANENT) { * @param $wildcard * If $wildcard is TRUE, cache IDs starting with $cid are deleted in * addition to the exact cache ID specified by $cid. If $wildcard is - * TRUE and $cid is '*' then the entire table $table is emptied. + * TRUE and $cid is '*' then the entire bin $bin is emptied. */ function cache_clear_all($cid = NULL, $bin = NULL, $wildcard = FALSE) { if (!isset($cid) && !isset($bin)) { |