I've a
if(!$may_cache) { $item[] = array( 'path' => 'some/path', 'callback' => 'somefunction', ); }
function somefunction() { $result=db_query("..."); ... $output.=$somedynamicstuff; return $output; }
but the result get cached anyway.
Cache is set to normal.
What could it be?
thanks