mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
2c955af135
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
16 lines
376 B
PHP
16 lines
376 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;
|
|
}
|
|
|
|
} |