Closed (fixed)
Project:
Domain
Version:
5.x-1.0beta6
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Nov 2007 at 02:18 UTC
Updated:
24 Nov 2007 at 16:27 UTC
Just noticed that if you have 'show debugging' turned on when your site gets indexed, the debug data is also indexed by the search module.
Fixed in dev by adding this conditional in domain_nodeapi():
case 'view':
// Search module casts both $a3 and $a4 as FALSE, not NULL.
// We check that to hide this data from search and other nodeapi
// calls that are neither a teaser nor a page view.
if ($a3 !== FALSE || $a4 !== FALSE) {
...
}
Comments
Comment #1
agentrickardCommitted to HEAD.