diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/filter/filter.install | 2 | ||||
-rw-r--r-- | modules/search/search.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/filter/filter.install b/modules/filter/filter.install index fb2a2ddeb..bff60eff6 100644 --- a/modules/filter/filter.install +++ b/modules/filter/filter.install @@ -81,7 +81,7 @@ function filter_schema() { 'not null' => TRUE, 'default' => 0, 'size' => 'tiny', - 'description' => 'Flag to indicate whether format is cachable. (1 = cachable, 0 = not cachable)', + 'description' => 'Flag to indicate whether format is cacheable. (1 = cacheable, 0 = not cacheable)', ), 'weight' => array( 'type' => 'int', diff --git a/modules/search/search.module b/modules/search/search.module index 8973c6cc9..d5360115e 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -509,7 +509,7 @@ function search_index($sid, $type, $text) { if (preg_match('!(?:node|book)/(?:view/)?([0-9]+)!i', $path, $match)) { $linknid = $match[1]; if ($linknid > 0) { - // Note: ignore links to uncachable nodes to avoid redirect bugs. + // Note: ignore links to uncacheable nodes to avoid redirect bugs. $node = db_fetch_object(db_query('SELECT n.title, n.nid, n.vid, r.format FROM {node} n INNER JOIN {node_revision} r ON n.vid = r.vid WHERE n.nid = %d', $linknid)); if (filter_format_allowcache($node->format)) { $link = TRUE; |