Tagged Questions
The zend-filter-strip-tags tag has no wiki summary.
3
votes
1answer
3k views
Zend Form addFilter StripTags not stripping tags
I need a little help clearing something up with Zend_Form and adding filters to an element. Now I was under the impression that when you add a filter to the form that, when the form is posted that ...
2
votes
1answer
833 views
Zend_Filter_StripTags ignoring allowed tags and attributes
I'm trying to use the following code and it still strips out all the tags. Am I doing something wrong? I'm using the newest V1.10
$allowed_tags = array('img', 'object', 'param', 'embed', 'a', ...
1
vote
3answers
381 views
Confused about StripTags filter
I'm a little confused about the StripTags filter as used in Zend. I think it's meant to strip tags that could result in XSS. So shouldn't that mean it should be used when outputting data in the views? ...
1
vote
1answer
296 views
Use of Zend Framework setTagsAllowed getTagsAllowed?
I have some very fundamental questions about the use of the setTagsAllowed and getTagsAllowed methods used with Zend Framework's Zend_Filter_StripTags? Specifically:
Where should the list of tags
...
0
votes
1answer
156 views
Zend Framework Input/Output XSS Filtering: Strip Tags, Textile, BBCode
In my CMS application, administration users can add HTML content via a WYSIWYG editor that gets filtered by HTMLPurifier. I am now wanting to add a message board functionality. I am planning on using ...
0
votes
3answers
242 views
Create a blurb from text from a database (similar to “read more”)
I am trying to cut text from a database off if <!-- break --> is found then only show what is before the break. I currently have this code
//get the description before the more link
...
0
votes
1answer
333 views
custom error messages with Zend_Filter_Input
I'm using Zend_Filter_Input to sanitize input from a registration process.
My code looks like so:
$validators = array(
'user_id'=> array(
array('Alnum', TRUE),
'NotEmpty',
...