Changeset 9811

Show
Ignore:
Timestamp:
06/02/10 13:09:25 (3 years ago)
Author:
p_lindheimer
Message:

fixes #4255 enclose the full set of searchstrings in ()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.7/amp_conf/htdocs/recordings/modules/callmonitor.module

    r8599 r9811  
    633633 
    634634      // allow entries to be viewed with users extension 
     635      $searchText .= "( "; 
    635636      $searchText .= "(src = '" . $_SESSION['ari_user']['extension'] . "' 
    636637                      OR dst = '" . $_SESSION['ari_user']['extension'] . "' 
     
    647648                        OR dst = '" . $_SESSION['ari_user']['outboundCID'] . "')"; 
    648649      } 
     650      $searchText .= ") "; 
    649651    } 
    650652