HTML validity: there's no attribute wrap for textarea element
authorsoranzo <soranzo>
Tue, 2 Jan 2007 17:24:44 +0000 (17:24 +0000)
committersoranzo <soranzo>
Tue, 2 Jan 2007 17:24:44 +0000 (17:24 +0000)
13 files changed:
aggregates.php
all_db.php
classes/database/Postgres.php
functions.php
plugin_slony.php
reports.php
schemas.php
tables.php
tablespaces.php
tblproperties.php
types.php
viewproperties.php
views.php

index 263ddf6994fc12d16d7bc101c9073bdb21f8c5b0..575ddfcbe64c5eb9deac1f9941b2bcca02486406 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage aggregates in a database
         *
-        * $Id: aggregates.php,v 1.15 2006/11/10 01:15:04 xzilla Exp $
+        * $Id: aggregates.php,v 1.16 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
@@ -93,7 +93,7 @@
                echo "\t\t<td class=\"data\"><input name=\"sortop\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", 
                        htmlspecialchars($_REQUEST['sortop']), "\" /></td>\n\t</tr>\n";
                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-               echo "\t\t<td><textarea name=\"aggrcomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+               echo "\t\t<td><textarea name=\"aggrcomment\" rows=\"3\" cols=\"32\">", 
                        htmlspecialchars($_REQUEST['aggrcomment']), "</textarea></td>\n\t</tr>\n";
 
                echo "</table>\n";
                        echo "<td><input name=\"newaggrowner\" size=\"32\" maxlength=\"32\" value=\"", htmlspecialchars($aggrdata->f['usename']), "\" /></td>";
                        echo "<td><input name=\"newaggrschema\" size=\"32\" maxlength=\"32\" value=\"", htmlspecialchars($_REQUEST['schema']), "\" /></td>\n\t</tr>\n";
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td><textarea name=\"newaggrcomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td><textarea name=\"newaggrcomment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($aggrdata->f['aggrcomment']), "</textarea></td>\n\t</tr>\n";
                        echo "</table>\n";
                        echo "<p><input type=\"hidden\" name=\"action\" value=\"save_alter\" />\n";
index 611da9164cbb2bdbdd853c51f3c3d95b1a23639f..c29f447bbd45e1ad88d2b4cda4e58388e65264c7 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage databases within a server
         *
-        * $Id: all_db.php,v 1.45 2006/11/19 21:33:13 xzilla Exp $
+        * $Id: all_db.php,v 1.46 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
@@ -55,7 +55,7 @@
                                $comment = isset($rs->fields['description']) ? $rs->fields['description'] : '';
                                echo "<tr><th class=\"data left\">{$lang['strcomment']}</th>\n";
                                echo "<td class=\"data1\">";
-                               echo "<textarea rows=\"3\" cols=\"32\" name=\"dbcomment\" wrap=\"virtual\">",
+                               echo "<textarea rows=\"3\" cols=\"32\" name=\"dbcomment\">",
                                        htmlspecialchars($comment), "</textarea></td></tr>\n";
                        }
                        echo "</table>\n";
                // Comments (if available)
                if ($data->hasSharedComments()) {
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td><textarea name=\"formComment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td><textarea name=\"formComment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_POST['formComment']), "</textarea></td>\n\t</tr>\n";
                }
 
index d04cc340376deffd825ab61bcfc34f7e6a16da06..f2c8c18e2a1729be8c0ca0ba24ccb4d65c76f1c9 100755 (executable)
@@ -4,7 +4,7 @@
  * A class that implements the DB interface for Postgres
  * Note: This class uses ADODB and returns RecordSets.
  *
- * $Id: Postgres.php,v 1.292 2006/11/19 21:33:13 xzilla Exp $
+ * $Id: Postgres.php,v 1.293 2007/01/02 17:24:44 soranzo Exp $
  */
 
 // @@@ THOUGHT: What about inherits? ie. use of ONLY???
@@ -305,7 +305,7 @@ class Postgres extends ADODB_base {
                                $n = substr_count($value, "\n");
                                $n = $n < 5 ? 5 : $n;
                                $n = $n > 20 ? 20 : $n;
-                               echo "<textarea name=\"", htmlspecialchars($name), "\" rows=\"{$n}\" cols=\"75\" wrap=\"virtual\"{$action_str}>\n";
+                               echo "<textarea name=\"", htmlspecialchars($name), "\" rows=\"{$n}\" cols=\"75\"{$action_str}>\n";
                                echo htmlspecialchars($value);
                                echo "</textarea>\n";
                                break;
@@ -314,7 +314,7 @@ class Postgres extends ADODB_base {
                                $n = substr_count($value, "\n");
                                $n = $n < 5 ? 5 : $n;
                                $n = $n > 20 ? 20 : $n;
-                               echo "<textarea name=\"", htmlspecialchars($name), "\" rows=\"{$n}\" cols=\"35\" wrap=\"virtual\"{$action_str}>\n";
+                               echo "<textarea name=\"", htmlspecialchars($name), "\" rows=\"{$n}\" cols=\"35\"{$action_str}>\n";
                                echo htmlspecialchars($value);
                                echo "</textarea>\n";
                                break;
index 379661a5b988431583df67c6cb1a04b0abbd3675..9c805a18f99b5c54ed6d80007e61a354fea2d1bd 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage functions in a database
         *
-        * $Id: functions.php,v 1.57 2006/12/31 16:21:26 soranzo Exp $
+        * $Id: functions.php,v 1.58 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                                        htmlspecialchars($_POST['formLinkSymbol']), "\" /></td></tr>\n";
                        } else {
                                echo "<tr><th class=\"data required\" colspan=\"4\">{$lang['strdefinition']}</th></tr>\n";
-                               echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\" wrap=\"virtual\">", 
+                               echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\">", 
                                        htmlspecialchars($_POST['formDefinition']), "</textarea></td></tr>\n";
                        }
                        
                        // Display function comment
                        echo "<tr><th class=\"data\" colspan=\"4\">{$lang['strcomment']}</th></tr>\n";
-                       echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" name=\"formComment\" rows=\"3\" cols=\"50\" wrap=\"virtual\">", 
+                       echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" name=\"formComment\" rows=\"3\" cols=\"50\">", 
                                        htmlspecialchars($_POST['formComment']), "</textarea></td></tr>\n";
                        // Display function properies
                        if (is_array($data->funcprops) && sizeof($data->funcprops) > 0) {
                                htmlspecialchars($_POST['formLinkSymbol']), "\" /></td></tr>\n";
                } else {
                        echo "<tr><th class=\"data required\" colspan=\"4\">{$lang['strdefinition']}</th></tr>\n";
-                       echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\" wrap=\"virtual\">", 
+                       echo "<tr><td class=\"data1\" colspan=\"4\"><textarea style=\"width:100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\">", 
                                htmlspecialchars($_POST['formDefinition']), "</textarea></td></tr>\n";
                }
                
index 7aad5c56b1ca139d1084fd7d879784ed9174ca23..f7bb2739e35a2b4fb7ddc52cb48c62cc21eb83ec 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Slony database tab plugin
         *
-        * $Id: plugin_slony.php,v 1.13 2006/12/31 16:21:26 soranzo Exp $
+        * $Id: plugin_slony.php,v 1.14 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                        echo "\t\t<td class=\"data1\"><input name=\"no_id\" size=\"5\" value=\"",
                                htmlspecialchars($_POST['no_id']), "\" /></td>\n\t</tr>\n";
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea name=\"no_comment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea name=\"no_comment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_POST['no_comment']), "</textarea></td>\n\t</tr>\n";
                        echo "</table>\n";
                        echo "<p>\n";
                        echo "\t\t<td class=\"data1\"><input name=\"nodeid\" size=\"5\" value=\"",
                                htmlspecialchars($_POST['nodeid']), "\" /></td>\n\t</tr>\n";
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea name=\"nodecomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea name=\"nodecomment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_POST['nodecomment']), "</textarea></td>\n\t</tr>\n";
                                
                        echo "\t</tr>\n";
                        echo "\t\t<td class=\"data1\"><input name=\"setid\" size=\"5\" value=\"",
                                htmlspecialchars($_POST['setid']), "\" /></td>\n\t</tr>\n";
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea name=\"setcomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea name=\"setcomment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_POST['setcomment']), "</textarea></td>\n\t</tr>\n";
                                
                        echo "\t</tr>\n";
                        echo "</select></td></tr>\n";
                        */
                        echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strddlscript']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea name=\"script\" rows=\"20\" cols=\"40\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea name=\"script\" rows=\"20\" cols=\"40\">", 
                                htmlspecialchars($_POST['script']), "</textarea></td>\n\t</tr>\n";
                        echo "</table>\n";
                        echo "<p>\n";
                                echo "\t\t<td class=\"data1\"><input name=\"tab_id\" size=\"5\" value=\"",
                                        htmlspecialchars($_POST['tab_id']), "\" /></td>\n\t</tr>\n";
                                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                               echo "\t\t<td class=\"data1\"><textarea name=\"comment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                               echo "\t\t<td class=\"data1\"><textarea name=\"comment\" rows=\"3\" cols=\"32\">", 
                                        htmlspecialchars($_POST['comment']), "</textarea></td>\n\t</tr>\n";
                                        
                                echo "\t</tr>\n";
                                echo "\t\t<td class=\"data1\"><input name=\"seq_id\" size=\"5\" value=\"",
                                        htmlspecialchars($_POST['seq_id']), "\" /></td>\n\t</tr>\n";
                                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                               echo "\t\t<td class=\"data1\"><textarea name=\"comment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                               echo "\t\t<td class=\"data1\"><textarea name=\"comment\" rows=\"3\" cols=\"32\">", 
                                        htmlspecialchars($_POST['comment']), "</textarea></td>\n\t</tr>\n";
                                        
                                echo "\t</tr>\n";
index 8713fb1f68260ec08d56a040479b6ef481b3bc61..41096a9001d50f566ba7f0ec6497b3d7febecd0e 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List reports in a database
         *
-        * $Id: reports.php,v 1.22 2005/10/18 03:45:16 chriskl Exp $
+        * $Id: reports.php,v 1.23 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                }
                echo "</select></td></tr>\n";
                echo "<tr><th class=\"data left\">{$lang['strcomment']}</th>\n";
-               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"5\" cols=\"50\" name=\"descr\" wrap=\"virtual\">",
+               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"5\" cols=\"50\" name=\"descr\">",
                        htmlspecialchars($_POST['descr']), "</textarea></td></tr>\n";
                echo "<tr><th class=\"data left required\">{$lang['strsql']}</th>\n";
-               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"15\" cols=\"50\" name=\"report_sql\" wrap=\"virtual\">",
+               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"15\" cols=\"50\" name=\"report_sql\">",
                        htmlspecialchars($_POST['report_sql']), "</textarea></td></tr>\n";
                echo "</table>\n";
                echo "<p><input type=\"hidden\" name=\"action\" value=\"save_edit\" />\n";
                }
                echo "</select></td></tr>\n";
                echo "<tr><th class=\"data left\">{$lang['strcomment']}</th>\n";
-               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"5\" cols=\"50\" name=\"descr\" wrap=\"virtual\">",
+               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"5\" cols=\"50\" name=\"descr\">",
                        htmlspecialchars($_REQUEST['descr']), "</textarea></td></tr>\n";
                echo "<tr><th class=\"data left required\">{$lang['strsql']}</th>\n";
-               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"15\" cols=\"50\" name=\"report_sql\" wrap=\"virtual\">",
+               echo "<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"15\" cols=\"50\" name=\"report_sql\">",
                        htmlspecialchars($_REQUEST['report_sql']), "</textarea></td></tr>\n";
                echo "</table>\n";
                echo "<p><input type=\"hidden\" name=\"action\" value=\"save_create\" />\n";
index be61db8a02149cb4fa373186ead0e96ec201d837..ea4823771fa9f96a05f2f157e9b2260612a9031d 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Manage schemas in a database
         *
-        * $Id: schemas.php,v 1.8 2006/06/17 12:57:36 xzilla Exp $
+        * $Id: schemas.php,v 1.9 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                }
                echo "\t\t\t</select>\n\t\t</td>\n\t\n";                
                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-               echo "\t\t<td class=\"data1\"><textarea name=\"formComment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+               echo "\t\t<td class=\"data1\"><textarea name=\"formComment\" rows=\"3\" cols=\"32\">", 
                        htmlspecialchars($_POST['formComment']), "</textarea></td>\n\t</tr>\n";
                        
                echo "\t</tr>\n";
                        echo "\t</tr>\n";
                        echo "\t<tr>\n";
                        echo "\t\t<th class=\"data\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea cols=\"32\" rows=\"3\"name=\"comment\" wrap=\"virtual\">", htmlspecialchars($_POST['comment']), "</textarea></td>\n";
+                       echo "\t\t<td class=\"data1\"><textarea cols=\"32\" rows=\"3\"name=\"comment\">", htmlspecialchars($_POST['comment']), "</textarea></td>\n";
                        echo "\t</tr>\n";
                        echo "</table>\n";
                        echo "<p><input type=\"hidden\" name=\"action\" value=\"alter\" />\n";
index 198880fbf8adfbddafab208e27ed8a5e12e12511..ca533d06eff65f1dab45d4535df8a43b8c62c9db 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List tables in a database
         *
-        * $Id: tables.php,v 1.82 2006/08/18 21:02:41 xzilla Exp $
+        * $Id: tables.php,v 1.83 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
@@ -70,7 +70,7 @@
                                }
 
                                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                               echo "\t\t<td><textarea name=\"tblcomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                               echo "\t\t<td><textarea name=\"tblcomment\" rows=\"3\" cols=\"32\">", 
                                        htmlspecialchars($_REQUEST['tblcomment']), "</textarea></td>\n\t</tr>\n";
 
                                echo "</table>\n";
index 34aa162030e22efee5f8cccd2b4703d316fbb266..1a7fb37a5f954373189be9e5842be8edee610fd3 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Manage tablespaces in a database cluster
         *
-        * $Id: tablespaces.php,v 1.10 2006/11/19 21:33:13 xzilla Exp $
+        * $Id: tablespaces.php,v 1.11 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
@@ -56,7 +56,7 @@
                        if ($data->hasSharedComments()){
                                echo "<tr><th class=\"data left\">{$lang['strcomment']}</th>\n";
                                echo "<td class=\"data1\">";
-                               echo "<textarea rows=\"3\" cols=\"32\" name=\"comment\" wrap=\"virtual\">",
+                               echo "<textarea rows=\"3\" cols=\"32\" name=\"comment\">",
                                        htmlspecialchars($_POST['comment']), "</textarea></td></tr>\n";
                        }
                        echo "</table>\n";
                // Comments (if available)
                if ($data->hasSharedComments()) {
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td><textarea name=\"formComment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "\t\t<td><textarea name=\"formComment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_POST['formComment']), "</textarea></td>\n\t</tr>\n";
                }
                echo "</table>\n";
index 685f87cd8bfe35dc6767e30fbe1cbe30696f60c0..59b44390367fb80ecd34e0e780bdbfa8dfc3750d 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List tables in a database
         *
-        * $Id: tblproperties.php,v 1.72 2006/08/18 21:02:41 xzilla Exp $
+        * $Id: tblproperties.php,v 1.73 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                        
                        echo "<tr><th class=\"data left\">{$lang['strcomment']}</th>\n";
                        echo "<td class=\"data1\">";
-                       echo "<textarea rows=\"3\" cols=\"32\" name=\"comment\" wrap=\"virtual\">",
+                       echo "<textarea rows=\"3\" cols=\"32\" name=\"comment\">",
                                htmlspecialchars($_POST['comment']), "</textarea></td></tr>\n";
                        echo "</table>\n";
                        echo "<p><input type=\"hidden\" name=\"action\" value=\"alter\" />\n";
index be805c533140cc552bc821cdbc14ab2b7cb572f5..c25c58672f7a046267bf03e19af9fc27af612304 100644 (file)
--- a/types.php
+++ b/types.php
@@ -3,7 +3,7 @@
        /**
         * Manage types in a database
         *
-        * $Id: types.php,v 1.31 2006/11/10 00:14:29 xzilla Exp $
+        * $Id: types.php,v 1.32 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                                        htmlspecialchars($_REQUEST['fields']), "\" /></td>\n\t</tr>\n";
 
                                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                               echo "\t\t<td><textarea name=\"typcomment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                               echo "\t\t<td><textarea name=\"typcomment\" rows=\"3\" cols=\"32\">", 
                                        htmlspecialchars($_REQUEST['typcomment']), "</textarea></td>\n\t</tr>\n";
 
                                echo "</table>\n";
index d6eaa17ba74b0b69081eb9dfa0728d1c8d3d1b1e..3109de91daec1773ea390e66c1fdfb9d42da557c 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * List views in a database
         *
-        * $Id: viewproperties.php,v 1.21 2006/08/03 19:03:32 xzilla Exp $
+        * $Id: viewproperties.php,v 1.22 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                        echo "<form action=\"$PHP_SELF\" method=\"post\">\n";
                        echo "<table width=\"100%\">\n";
                        echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strdefinition']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea style=\"width: 100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea style=\"width: 100%;\" rows=\"20\" cols=\"50\" name=\"formDefinition\">", 
                                htmlspecialchars($_POST['formDefinition']), "</textarea></td>\n\t</tr>\n";
                        echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-                       echo "\t\t<td class=\"data1\"><textarea rows=\"3\" cols=\"32\" name=\"formComment\" wrap=\"virtual\">", 
+                       echo "\t\t<td class=\"data1\"><textarea rows=\"3\" cols=\"32\" name=\"formComment\">", 
                                htmlspecialchars($_POST['formComment']), "</textarea></td>\n\t</tr>\n";
                        echo "</table>\n";
                        echo "<p><input type=\"hidden\" name=\"action\" value=\"save_edit\" />\n";
index c54a6884fffe575bcc288e95bfa7f7cd26e84043..be2226ddcc6bfc22d32a2f4b5894896a50920b37 100644 (file)
--- a/views.php
+++ b/views.php
@@ -3,7 +3,7 @@
        /**
         * Manage views in a database
         *
-        * $Id: views.php,v 1.60 2006/11/10 00:23:28 xzilla Exp $
+        * $Id: views.php,v 1.61 2007/01/02 17:24:44 soranzo Exp $
         */
 
        // Include application functions
                        echo "<tr><th class=\"data\">{$lang['strcomment']}</th></tr>";
                        echo "<tr>\n<td class=\"data1\">\n";
                        // View comments
-                       echo "<textarea name=\"formComment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+                       echo "<textarea name=\"formComment\" rows=\"3\" cols=\"32\">", 
                                htmlspecialchars($_REQUEST['formComment']), "</textarea>\n";
                        echo "</td>\n</tr>\n";
                        echo "</table>\n";
                echo "\t<td class=\"data1\"><input name=\"formView\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", 
                        htmlspecialchars($_REQUEST['formView']), "\" /></td>\n\t</tr>\n";
                echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strdefinition']}</th>\n";
-               echo "\t<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"10\" cols=\"50\" name=\"formDefinition\" wrap=\"virtual\">", 
+               echo "\t<td class=\"data1\"><textarea style=\"width:100%;\" rows=\"10\" cols=\"50\" name=\"formDefinition\">", 
                        htmlspecialchars($_REQUEST['formDefinition']), "</textarea></td>\n\t</tr>\n";
                echo "\t<tr>\n\t\t<th class=\"data left\">{$lang['strcomment']}</th>\n";
-               echo "\t\t<td class=\"data1\"><textarea name=\"formComment\" rows=\"3\" cols=\"32\" wrap=\"virtual\">", 
+               echo "\t\t<td class=\"data1\"><textarea name=\"formComment\" rows=\"3\" cols=\"32\">", 
                        htmlspecialchars($_REQUEST['formComment']), "</textarea></td>\n\t</tr>\n";
                echo "</table>\n";
                echo "<p><input type=\"hidden\" name=\"action\" value=\"save_create\" />\n";