adding space between cols="number" and $attr.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 29 Aug 2004 16:56:41 +0000 (16:56 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 29 Aug 2004 16:56:41 +0000 (16:56 +0000)
removing extra double quote.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7985 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/forms.php

index b6ce3b37929a8b167850abd06f4bd4fbd693688f..c0689d6c40e329f67be57d3afbe3c57d79557437 100644 (file)
@@ -121,8 +121,8 @@ function addReset($value) {
  */
 function addTextArea($name, $text = '', $cols = 40, $rows = 10, $attr = '') {
     return '<textarea name="'.htmlspecialchars($name).'" '.
  */
 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";
 }
 
 /**
 }
 
 /**