[asterisk-bugs] [JIRA] (ASTERISK-22899) Manager UserEvent including action on output
Matt Jordan (JIRA)
noreply at issues.asterisk.org
Mon Nov 25 13:10:03 CST 2013
[ https://issues.asterisk.org/jira/browse/ASTERISK-22899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Matt Jordan updated ASTERISK-22899:
-----------------------------------
Description:
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).
\[edit by mjordan\]
Inline patch removed.
after mod output
Event: UserEvent
Privilege: user,all
UserEvent: test
body: this is a test
was:
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).
{noformat}
- for (x = 0; x < m->hdrcount; x++) {
+ for (x = 1; x < m->hdrcount; x++) {
{noformat}
after mod output
Event: UserEvent
Privilege: user,all
UserEvent: test
body: this is a test
> 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: 1.8.24.0, 11.6.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).
> \[edit by mjordan\]
> Inline patch removed.
> 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