Changeset 4175

Show
Ignore:
Timestamp:
06/23/07 12:41:33 (6 years ago)
Author:
p_lindheimer
Message:

WARNING: DEFAULT BEHAVIOR CHANGING, change default behavior when creating extensions to enable Call Waiting, can be overridden with ENABLECW=no in amportal.conf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.3/core/functions.inc.php

    r4169 r4175  
    13031303    $astman->database_put("AMPUSER",$extension."/voicemail","\"".isset($voicemail)?$voicemail:''."\""); 
    13041304    $astman->database_put("AMPUSER",$extension."/device","\"".isset($device)?$device:''."\""); 
    1305     if (isset($amp_conf['ENABLECW']) && $amp_conf['ENABLECW'] == "yes") { 
     1305    if (!isset($amp_conf['ENABLECW']) || strtolower($amp_conf['ENABLECW']) != "no") { 
    13061306      $astman->database_put("CW",$extension,"\"ENABLED\""); 
    13071307    }