projects
/
project/views.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
#963382 by aidanlis: Fix typo in mathematical expression field help text.
[project/views.git]
/
modules
/
aggregator
/
views_handler_field_aggregator_xss.inc
1
<
?php
2
// $Id$
3
/**
4
* @file
5
* Filters htmls tags from item.
6
*/
7
8
class
views_handler_field_aggregator_xss
extends
views_handler_field
{
9
function
render
(
$values
) {
10
$value
=
$values
->{
$this
->
field_alias
};
11
return
aggregator_filter_xss
(
$value
);
12
}
13
14
}