<div dir="ltr">I apologize, but Perl isn't my strong suit.  :D<div><br></div><div style>Changing those three lines still compiles and updates the scrip, but it doesn't do anything and never assigns the ticket to anyone now.</div>
<div style><br></div><div style>Doug</div></div><div class="gmail_extra"><br clear="all"><div>Sincerely,<br>Doug Eubanks<br><a href="mailto:admin@dougware.net" target="_blank">admin@dougware.net</a><br>K1DUG<br>(919) 201-8750</div>

<br><br><div class="gmail_quote">On Fri, Apr 12, 2013 at 1:18 PM, Thomas Sibley <span dir="ltr"><<a href="mailto:trs@bestpractical.com" target="_blank">trs@bestpractical.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 04/12/2013 08:20 AM, Doug Eubanks wrote:<br>
> foreach $i ( @owners) {<br>
>   if ($owners[$i] == $last_owner) {<br>
>     $new_owner = $owners[$i+1];<br>
<br>
</div>The above makes no sense, likely written by someone who doesn't know<br>
Perl.  For loops don't loop over array indexes when just given an array,<br>
they loop over the array items.  Try:<br>
<br>
foreach $id (@owner) {<br>
  if ($id == $last_owner) {<br>
    $new_owner = $id;<br>
<div class="HOEnZb"><div class="h5"><br>
>     $self->TicketObj->SetOwner($new_owner);<br>
>     $isSet = 1;<br>
>   }<br>
> }<br>
<br>
</div></div></blockquote></div><br></div>