svn: /pear/pearweb/trunk/public_html/ account-request-existingpackage.php account-request-newpackage.php account-request-vote.php
[email protected] ("Daniel O'Connor") Wed, 13 Apr 2011 03:26:52 +0000
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <[email protected]> |
--dd9e11c4745d35fba7c1fbeee8a19966cd1190dd
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
clockwerx Wed, 13 Apr 2011 03:26:52 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=310191
Log:
$_POST, not $stripped
Changed paths:
U pear/pearweb/trunk/public_html/account-request-existingpackage.php
U pear/pearweb/trunk/public_html/account-request-newpackage.php
U pear/pearweb/trunk/public_html/account-request-vote.php
Modified: pear/pearweb/trunk/public_html/account-request-existingpackage.php
===================================================================
--- pear/pearweb/trunk/public_html/account-request-existingpackage.php 2011-04-13 03:21:50 UTC (rev 310190)
+++ pear/pearweb/trunk/public_html/account-request-existingpackage.php 2011-04-13 03:26:52 UTC (rev 310191)
@@ -52,7 +52,7 @@
$display_form = true;
}
- if (empty($stripped['read_everything']['comments_read'])) {
+ if (empty($_POST['read_everything']['comments_read'])) {
$errors[] = 'Obviously you did not read all the comments'
. ' concerning the need for an account. Please read '
. 'them again.';
Modified: pear/pearweb/trunk/public_html/account-request-newpackage.php
===================================================================
--- pear/pearweb/trunk/public_html/account-request-newpackage.php 2011-04-13 03:21:50 UTC (rev 310190)
+++ pear/pearweb/trunk/public_html/account-request-newpackage.php 2011-04-13 03:26:52 UTC (rev 310191)
@@ -55,7 +55,7 @@
$display_form = true;
}
- if (empty($stripped['read_everything']['comments_read'])) {
+ if (empty($_POST['read_everything']['comments_read'])) {
$errors[] = 'Obviously you did not read all the comments'
. ' concerning the need for an account. Please read '
. 'them again.';
Modified: pear/pearweb/trunk/public_html/account-request-vote.php
===================================================================
--- pear/pearweb/trunk/public_html/account-request-vote.php 2011-04-13 03:21:50 UTC (rev 310190)
+++ pear/pearweb/trunk/public_html/account-request-vote.php 2011-04-13 03:26:52 UTC (rev 310191)
@@ -53,7 +53,7 @@
$display_form = true;
}
- if (empty($stripped['read_everything']['comments_read'])) {
+ if (empty($_POST['read_everything']['comments_read'])) {
$errors[] = 'Obviously you did not read all the comments'
. ' concerning the need for an account. Please read '
. 'them again.';
--dd9e11c4745d35fba7c1fbeee8a19966cd1190dd--