mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
12b811d749
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
19 lines
400 B
PHP
19 lines
400 B
PHP
<?php
|
|
|
|
/**
|
|
* Sets height/width defaults for <textarea>
|
|
*/
|
|
class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform
|
|
{
|
|
|
|
public function transform($attr, $config, $context) {
|
|
// Calculated from Firefox
|
|
if (!isset($attr['cols'])) $attr['cols'] = '22';
|
|
if (!isset($attr['rows'])) $attr['rows'] = '3';
|
|
return $attr;
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|