removing extra double quote.
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7985
7612ce4b-ef26-0410-bec9-
ea0150e637f0
*/
function addTextArea($name, $text = '', $cols = 40, $rows = 10, $attr = '') {
return '<textarea name="'.htmlspecialchars($name).'" '.
- 'rows="'.(int)$rows .'" cols="'.(int)$cols.'"'.
- $attr . '">'.htmlspecialchars($text) ."</textarea>\n";
+ 'rows="'.(int)$rows .'" cols="'.(int)$cols.'" '.
+ $attr . '>'.htmlspecialchars($text) ."</textarea>\n";
}
/**