[asterisk-bugs] [JIRA] (ASTERISK-22899) Manager UserEvent including action on output

outtolunc (JIRA) noreply at issues.asterisk.org
Sat Nov 23 14:42:03 CST 2013


outtolunc created ASTERISK-22899:
------------------------------------

             Summary: Manager UserEvent including action on output
                 Key: ASTERISK-22899
                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-22899
             Project: Asterisk
          Issue Type: Improvement
      Security Level: None
          Components: Core/ManagerInterface
    Affects Versions: 11.6.0, 1.8.24.0
         Environment: Linux BOOYA 2.6.32-358.23.2.el6.x86_64 #1 SMP Wed Oct 16 18:37:12 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
            Reporter: outtolunc
            Severity: Trivial


action: userevent
userevent: test
body: this is a test

outputs

Event: UserEvent
Privilege: user,all
UserEvent: test
action: userevent       << note it includes the original action header
body: this is a test

by simply adjusting the start of the count from 0 to 1, it will skip over the action (as it is always first).

-       for (x = 0; x < m->hdrcount; x++) {
+       for (x = 1; x < m->hdrcount; x++) {

after mod output

Event: UserEvent
Privilege: user,all
UserEvent: test
body: this is a test



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.asterisk.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the asterisk-bugs mailing list