Show
Ignore:
Timestamp:
11/29/10 13:07:38 (2 years ago)
Author:
p_lindheimer
Message:

fixes #4660 add admin code to meetme_additional.conf to get around Asterisk bug introduced in https://issues.asterisk.org/view.php?id=17908 though we probably should already have been putting it in anyhow

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.7/conferences/functions.inc.php

    r8844 r10628  
    88    return "meetme_additional.conf"; 
    99  } 
    10  function addMeetme($room, $pin) { 
    11    $this->_meetmes[$room] = $pin
     10  function addMeetme($room, $userpin, $adminpin='') { 
     11    $this->_meetmes[$room] = $userpin.($adminpin != '' ? ','.$adminpin : '')
    1212  } 
    1313  // return the output that goes in the file 
     
    180180           
    181181          // add meetme config 
    182          $conferences_conf->addMeetme($room['exten'],$room['userpin']); 
     182          $conferences_conf->addMeetme($room['exten'],$room['userpin'],$room['adminpin']); 
    183183        } 
    184184      } 
  • modules/branches/2.7/conferences/module.xml

    r9018 r10628  
    22  <rawname>conferences</rawname> 
    33  <name>Conferences</name> 
    4   <version>2.7.0.1</version> 
     4  <version>2.7.0.2</version> 
    55  <publisher>FreePBX</publisher> 
    66  <license>GPLv2+</license> 
     
    99  <description>Allow creation of conference rooms (meet-me) where multiple people can talk together.</description> 
    1010  <changelog> 
     11    *2.7.0.2* #4660 
    1112    *2.7.0.1* spelling fixes, localization updates 
    1213    *2.7.0.0* #4051, #3967 add MoH class choice require MoH module 2.7.0.0+