Context for queue members

fop2admin 1.2.11, fop2 2.26, freepbx 2.10 and asterisk 1.8.17.0

When I use the fop2 to log in and out of queues it uses the context from-internal, but when I do this on the phones it uses from-queue. Presumably the latter is what I want.

Looking in functions.inc.php there appears to be a bug

$ver = getversion();
$ver = str_replace(".","",substr($ver,0,3));

if($ver>25) {
$qctx="from-queue";
} else {
$qctx="from-internal";
}

Assuming the version string comes back like 2.10 this would give
2.5 -> 25
2.10 -> 21

Comments

  • Hi,

    Thanks for the report. This problem and a related one are already fixed on the next release. The related issue is inside the autoconfig-buttons-freepbx.sh script

    The easy fix for the autoconfig scriopt is to change the line

    QUEUECONTEXT="from-internal"

    to

    QUEUECONTEXT="from-queue"

    And in functions.inc.php for fop2admin is to set substr($ver,0,4)

    Best regards,
Sign In or Register to comment.