Changeset 10531

Show
Ignore:
Timestamp:
11/05/10 11:35:13 (3 years ago)
Author:
p_lindheimer
Message:

remove Undefined offset warning

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.8/queues/agi-bin/queue_devstate.agi

    r9649 r10531  
    8282        if (ereg('(\\d+)',$item1)) { 
    8383          preg_match_all ("/(\\d+)/is", $item1,$matches); 
    84           if ($matches[1][0] != '') { 
     84          if (isset($matches[1][0]) && $matches[1][0] != '') { 
    8585            $queues[]=$matches[1][0]; 
    8686            $inqueue=$matches[1][0];