Skip to content

Commit

Permalink
Text link issue on view integration module
Browse files Browse the repository at this point in the history
  • Loading branch information
swati-karande committed Jun 4, 2013
1 parent 3ac17eb commit 8da894b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class civicrm_handler_field_link_activity extends views_handler_field {
}

function render($values) {
return $this->render_link(check_plain($values->{$this->field_alias}), $values);
return $this->render_link(NULL, $values);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class civicrm_handler_field_link_contribution extends views_handler_field {
}

function render($values) {
return $this->render_link(check_plain($values->{$this->field_alias}), $values);
return $this->render_link(NULL, $values);
}
}

2 changes: 1 addition & 1 deletion modules/views/civicrm/civicrm_handler_field_link_event.inc
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class civicrm_handler_field_link_event extends views_handler_field {
}

function render($values) {
return $this->render_link(check_plain($values->{$this->field_alias}), $values);
return $this->render_link(NULL, $values);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class civicrm_handler_field_link_participant extends views_handler_field {
}

function render($values) {
return $this->render_link(check_plain($values->{$this->field_alias}), $values);
return $this->render_link(NULL, $values);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class civicrm_handler_field_link_relationship extends views_handler_field {
}

function render($values) {
return $this->render_link(check_plain($values->{$this->field_alias}), $values);
return $this->render_link(NULL, $values);
}
}

0 comments on commit 8da894b

Please sign in to comment.