Skip to content

Commit

Permalink
Fixed bug #702: Field length for answers seems to be limited to 100 c…
Browse files Browse the repository at this point in the history
…haracters

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2584 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Mar 15, 2007
1 parent 53c21e6 commit 9742d51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/html.php
Expand Up @@ -1315,7 +1315,7 @@

$vasummary .= "\t</td>\n"
."\t<td width='35%'>\n"
."\t<input type='text' name='answer_{$row['language']}_{$row['sortorder']}' maxlength='100' size='80' value=\"{$row['answer']}\" />\n"
."\t<input type='text' name='answer_{$row['language']}_{$row['sortorder']}' maxlength='1000' size='80' value=\"{$row['answer']}\" />\n"
."\t</td>\n"
."\t<td width='25%'>\n";
if ($activated == 0)
Expand Down Expand Up @@ -1354,7 +1354,7 @@
$first=false;
$vasummary .= "\t</td>\n"
."\t<td width='35%'>\n"
."\t<input type='text' maxlength='100' name='insertanswer' size='80' />\n"
."\t<input type='text' maxlength='1000' name='insertanswer' size='80' />\n"
."\t</td>\n"
."\t<td width='25%'>\n"
."\t<input type='submit' name='method' value='".$clang->gT("Add new Answer")."' />\n"
Expand Down
2 changes: 1 addition & 1 deletion docs/release_notes_and_upgrade_instructions.txt
@@ -1,4 +1,4 @@
Welcome to PHPSurveyor v1.46b!
Welcome to PHPSurveyor v1.47b!

Warning:
THIS IS AN BETA RELEASE. It should be pretty stable, but it SHOULD NOT be used FOR PRODUCTION!
Expand Down

0 comments on commit 9742d51

Please sign in to comment.