Author: fizyk
Date: 2010-04-10 17:29:29 +0200 (Sat, 10 Apr 2010)
New Revision: 29064
Modified:
plugins/sfForkedDoctrineApplyPlugin/trunk/README
plugins/sfForkedDoctrineApplyPlugin/trunk/lib/action/sfApplyActionsLibrary.class.php
plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl
Log:
custom apply form can now use custom names
Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/README
===================================================================
--- plugins/sfForkedDoctrineApplyPlugin/trunk/README 2010-04-10 14:55:07 UTC
(rev 29063)
+++ plugins/sfForkedDoctrineApplyPlugin/trunk/README 2010-04-10 15:29:29 UTC
(rev 29064)
@@ -30,7 +30,7 @@
However it is also possible to install it through archive:
- symfony plugin:install sfForkedDoctrineApplyPlugin-1.1.1.tgz
+ symfony plugin:install sfForkedDoctrineApplyPlugin-1.1.2.tgz
just place downloaded package in your project's root first.
Modified:
plugins/sfForkedDoctrineApplyPlugin/trunk/lib/action/sfApplyActionsLibrary.class.php
===================================================================
---
plugins/sfForkedDoctrineApplyPlugin/trunk/lib/action/sfApplyActionsLibrary.class.php
2010-04-10 14:55:07 UTC (rev 29063)
+++
plugins/sfForkedDoctrineApplyPlugin/trunk/lib/action/sfApplyActionsLibrary.class.php
2010-04-10 15:29:29 UTC (rev 29064)
@@ -25,7 +25,7 @@
if( $request->isMethod('post') )
{
//gathering form request in one array
- $formValues = $request->getParameter('sfApplyApply');
+ $formValues = $request->getParameter( $this->form->getName() );
if(sfConfig::get('app_recaptcha_enabled') )
{
$captcha = array(
@@ -87,7 +87,7 @@
if ($request->isMethod('post'))
{
//gathering form request in one array
- $formValues = $request->getParameter('sfApplyResetRequest');
+ $formValues = $request->getParameter( $this->form->getName() );
if(sfConfig::get('app_recaptcha_enabled') )
{
$captcha = array(
@@ -181,7 +181,7 @@
}
if ($request->isMethod('post'))
{
- $this->form->bind($request->getParameter('sfApplyReset'));
+ $this->form->bind($request->getParameter( $this->form->getName()
));
if ($this->form->isValid())
{
//This got fixed (0.9.1), so if user is authenticated, and
requests password change, we're still getting his id.
@@ -234,7 +234,7 @@
}
if ($request->isMethod('post'))
{
- $this->form->bind($request->getParameter('sfApplySettings'));
+ $this->form->bind($request->getParameter( $this->form->getName()
));
if ($this->form->isValid())
{
$this->form->save();
Modified: plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl
===================================================================
--- plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl 2010-04-10
14:55:07 UTC (rev 29063)
+++ plugins/sfForkedDoctrineApplyPlugin/trunk/package.xml.tmpl 2010-04-10
15:29:29 UTC (rev 29064)
@@ -53,6 +53,22 @@
<changelog>
<release>
<version>
+ <release>1.1.2</release>
+ <api>1.0.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <license uri="http://www.symfony-project.org/license">MIT
license</license>
+ <date>2010-04-08</date>
+ <license>MIT</license>
+ <notes>
+ * fizyk: custom apply form can now use custom names
+ </notes>
+ </release>
+ <release>
+ <version>
<release>1.1.1</release>
<api>1.0.0</api>
</version>
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.