summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-22 01:15:15 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-22 01:15:15 +0000
commitc5ee590c6dc94c7a26c72d966ad3f0fff941dd46 (patch)
treedff4f23ec3958e2a7fa6adb0e2517271b821c36d
parent6482cc8927533888f422ff45aa80726f7046e6a9 (diff)
downloadbrdo-c5ee590c6dc94c7a26c72d966ad3f0fff941dd46.tar.gz
brdo-c5ee590c6dc94c7a26c72d966ad3f0fff941dd46.tar.bz2
- Patch #611048 by c960657: removed outdated comment in _registry_check_code().
-rw-r--r--includes/bootstrap.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 192f28e1a..b4f683840 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1924,8 +1924,8 @@ function _registry_check_code($type, $name = NULL) {
return;
}
- // $type can be one of 'function', 'interface' or 'class', so we only need the
- // first letter to keep the cache key unique.
+ // $type is either 'interface' or 'class', so we only need the first letter to
+ // keep the cache key unique.
$cache_key = $type[0] . $name;
if (isset($lookup_cache[$cache_key])) {
if ($lookup_cache[$cache_key]) {