[evolvis-commits] r12975: Delete characters limit on subject in forum

mirabilos at evolvis.org mirabilos at evolvis.org
Mon Feb 28 02:12:23 CET 2011


Author: mirabilos
Date: 2011-02-28 02:12:23 +0100 (Mon, 28 Feb 2011)
New Revision: 12975

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/include/ForumHTML.class.php
Log:
Delete characters limit on subject in forum

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/include/ForumHTML.class.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/include/ForumHTML.class.php	2011-02-28 01:12:21 UTC (rev 12974)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/include/ForumHTML.class.php	2011-02-28 01:12:23 UTC (rev 12975)
@@ -483,7 +483,7 @@
 		<td valign="top"><br>
 		<strong><?php echo _('Subject:'); ?></strong><?php echo utils_requiredField(); ?><br />
 		<input type="text" name="subject" value="<?php echo $subject; ?>"
-			size="45" maxlength="45" /> <br>
+			size="70" /> <br>
 		<br>
 		<strong><?php echo _('Message:'); ?></strong><?php echo notepad_button('document.forms[1].body') ?><?php echo utils_requiredField(); ?><br />
 		<?php
@@ -496,7 +496,7 @@
 		plugin_hook("text_editor",$params);
 		if (!$GLOBALS['editor_was_set_up']) {
 			//if we don't have any plugin for text editor, display a simple textarea edit box
-			echo '<textarea name="body"  rows="10" cols="50">' . $body . '</textarea>';
+			echo '<textarea name="body"  rows="10" cols="70">' . $body . '</textarea>';
 		}
 		unset($GLOBALS['editor_was_set_up']);
 		?> <br>
@@ -554,7 +554,7 @@
 		<td valign="top"><br>
 		<strong><?php echo _('Subject:'); ?></strong><?php echo utils_requiredField(); ?><br />
 		<input type="text" name="subject" value="<?php echo $subject; ?>"
-			size="45" maxlength="45" /> <br>
+			size="70" /> <br>
 		<br>
 		<strong><?php echo _('Message:'); ?></strong><?php echo notepad_button('document.forms[1].body') ?><?php echo utils_requiredField(); ?><br />
 
@@ -568,7 +568,7 @@
 		plugin_hook("text_editor",$params);
 		if (!$GLOBALS['editor_was_set_up']) {
 			//if we don't have any plugin for text editor, display a simple textarea edit box
-			echo '<textarea name="body"  rows="10" cols="50" wrap="soft">' . $body . '</textarea>';
+			echo '<textarea name="body"  rows="10" cols="70" wrap="soft">' . $body . '</textarea>';
 		}
 		unset($GLOBALS['editor_was_set_up']);
 		?> <?php //$text_support->displayTextField('body'); ?> <br>



More information about the evolvis-commits mailing list