Changeset 12986

Show
Ignore:
Timestamp:
12/04/11 16:19:52 (1 year ago)
Author:
p_lindheimer
Message:

make default and app_meetme the same to handle possible migration issues of ASTCONFAPP not being set yet

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.10/amp_conf/htdocs/admin/libraries/extensions.class.php

    r12968 r12986  
    10231023    //use confbridge if requested, pruning meetme only options 
    10241024    switch ($amp_conf['ASTCONFAPP']) { 
    1025       case 'app_meetme': 
    1026         $this->app = 'MeetMe'; 
    1027         break; 
    10281025      case 'app_confbridge': 
    10291026        $this->app = 'ConfBridge'; 
     
    10361033        $this->options = preg_replace('/[GpSL]\(.*\)/', '', $this->options); 
    10371034        $this->options = preg_replace('/w\(.*\)/', 'w', $this->options); 
     1035        break; 
     1036      default: 
     1037      case 'app_meetme': 
     1038        $this->app = 'MeetMe'; 
    10381039        break; 
    10391040    }