Hello, I'm trying to alter a query that the view is doing to have the arguments passed doing a LIKE instead of an =
I'm using the _query_views_alter but it does ot look like it has been called at all.
Here is the code:
function mymodule_contact_query_views_alter(QueryAlterableInterface $query) {
watchdog('cccc', print_r($query, TRUE));
}
Comments
Comment #1
dawehnerIf it's not called it's a bug of core, we just add the tag.
Comment #2
damien tournoud commentedMost likely you forgot to clear the cache or something like that.
Comment #3
dawehnerUpdate status.
Comment #4
paoloteo commentedconfirmed.
My fault, even if I thought I did clear cache, probably I did not.