function notifications_views_handler_relationship::query in Notifications 6
Same name and namespace in other branches
- 6.4 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship::query()
- 6.2 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship::query()
- 6.3 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship::query()
- 7 notifications_views/includes/notifications_views_handler_relationship.inc \notifications_views_handler_relationship::query()
File
- notifications_views/
notifications_views_handler_relationship.inc, line 3
Class
Code
function query() {
$oldfield = $this->field;
$this->field = $this->real_field;
parent::query();
$this->field = $oldfield;
}