Changeset 3892

Show
Ignore:
Timestamp:
03/28/07 17:38:40 (5 years ago)
Author:
p_lindheimer
Message:

Merged revisions 3726-3727,3729-3732,3734-3735,3737-3738,3740-3741,3743,3745,3747,3752-3753,3756,3758-3769,3771,3773-3774,3778-3793,3797,3799-3804,3807,3809-3825,3827-3829,3831-3836,3838-3845,3847,3850,3852-3856,3859-3869,3871,3873-3882,3884-3885,3887-3891 via svnmerge from
https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/branches/2.2

........

r3891 | p_lindheimer | 2007-03-28 15:36:18 -0700 (Wed, 28 Mar 2007) | 1 line


#1847 - values specified on right side of '=' in trunk configs were being truncated breakins secrets with '=' as well as servar=var=value would be broke, thanks toddinpal

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk

    • Property svnmerge-integrated changed from /freepbx/branches/2.2:1-3724,3726-3727,3729-3732,3734-3735,3737-3738,3740-3741,3743-3745,3747,3752-3753,3755-3793,3797-3858,3870,3872,3883 to /freepbx/branches/2.2:1-3724,3726-3727,3729-3732,3734-3735,3737-3738,3740-3741,3743-3745,3747,3752-3753,3755-3793,3797-3891
  • freepbx/trunk/amp_conf/htdocs/admin/modules/core/functions.inc.php

    r3874 r3892  
    15031503    $line = trim($line); 
    15041504    if (count(split('=',$line)) > 1) { 
    1505       $tmp = split('=',$line); 
     1505      $tmp = split('=',$line,2); 
    15061506      $key=trim($tmp[0]); 
    15071507      $value=trim($tmp[1]);