You are here

notifications_views_handler_relationship.inc in Notifications 6.4

File

notifications_views/notifications_views_handler_relationship.inc
View source
<?php

class notifications_views_handler_relationship extends views_handler_relationship {
  function query() {
    $oldfield = $this->field;
    $this->field = $this->real_field;
    parent::query();
    $this->field = $oldfield;
  }

}