Changeset 5002

Show
Ignore:
Timestamp:
09/07/07 23:44:09 (6 years ago)
Author:
p_lindheimer
Message:

Merged revisions 5001 via svnmerge from
https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/trunk

........

r5001 | p_lindheimer | 2007-09-07 20:42:19 -0700 (Fri, 07 Sep 2007) | 1 line


escape spaces in exec_sipaddheader() or they get chopped off in the library. Fixes some paging issues

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.3

    • Property svnmerge-integrated changed from /freepbx/branches/2.2:1-4145,4434,4437 /freepbx/branches/2.3.newcss:1-4394 /freepbx/trunk:1-4129 to /freepbx/branches/2.2:1-4145,4434,4437 /freepbx/branches/2.3.newcss:1-4394 /freepbx/trunk:1-4129,5001
  • freepbx/branches/2.3/amp_conf/agi-bin/phpagi.php

    r4400 r5002  
    804804    function exec_sipaddheader($header, $value) 
    805805    { 
     806      $value = preg_replace("/\ /","\\\ ",$value); 
    806807      return $this->exec('SIPAddHeader', $header.":".$value); 
    807808    }