I added [GET[name]] and [POST[..]] ..and now documented it.

We have talk about the checks: it is rude  way to allow admin user edit
the field widget_content, that contains a lot of aiki code that MUST NOT
be parsed (i think..)

-- 
You received this bug notification because you are a member of Aiki
Framework Developers, which is subscribed to aikiframework.
https://bugs.launchpad.net/bugs/903723

Title:
  POST[value] cannot exist inside a form

Status in Aiki Framework:
  Confirmed

Bug description:
  I'm seeing a problem in aiki framework 0.8.18.843 where a POST[value]
  or GET[value] variable cannot exist inside of a form tag.

  Putting POST[value] or GET[value] inside a form tag will result in the
  output 'POST[value]' instead of the expected posted value.

  It will also sabotage every other GET[] or POST[] on the page

  For example:

  Let's say we post the values 'foo=bar' and 'alpha=beta'to our page,
  with the following widget:

  
  POST[foo]
  POST[alpha]

      <form>
          POST[foo]
  </form>

  EXPECTED OUTPUT:

  bar
  beta
  bar

  ACTUAL OUTPUT:

  POST[foo]
  POST[alpha]
  POST[foo]

To manage notifications about this bug go to:
https://bugs.launchpad.net/aikiframework/+bug/903723/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to     : aikiframework-devel@lists.launchpad.net
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help   : https://help.launchpad.net/ListHelp

Reply via email to