Changeset 2567

Show
Ignore:
Timestamp:
09/17/06 05:02:56 (7 years ago)
Author:
qldrob
Message:

More #999 fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/modules/core/functions.inc.php

    r2547 r2567  
    22752275      $extenInfo=core_users_get($extdisplay); 
    22762276      extract($extenInfo); 
    2277       if (is_array($deviceInfo)) 
     2277      if (isset($deviceInfo) && is_array($deviceInfo)) 
    22782278        extract($deviceInfo); 
    22792279   
  • freepbx/trunk/amp_conf/htdocs/admin/modules/core/page.general.php

    r2243 r2567  
    109109  <input type="text" size="2" name="VM_GAIN" value="<?php  echo htmlspecialchars($VM_GAIN)?>"/> 
    110110  <br><br> 
    111   <input type="checkbox" value="s" name="VM_OPTS" <?php  echo ($VM_OPTS ? 'CHECKED' : '')?>> <a href=# class="info"><?php echo _("Do Not Play")?><span><?php echo _("Check this to remove the default message \"Please leave your message after the tone. When done, hang-up, or press the pound key.\" That is played after the voicemail greeting (the s option). This applies globally to all vm boxes.")?></span></a> <?php echo _("please leave message after tone to caller")?> 
     111  <input type="checkbox" value="s" name="VM_OPTS" <?php  echo (isset($VM_OPTS) ? 'CHECKED' : '')?>> <a href=# class="info"><?php echo _("Do Not Play")?><span><?php echo _("Check this to remove the default message \"Please leave your message after the tone. When done, hang-up, or press the pound key.\" That is played after the voicemail greeting (the s option). This applies globally to all vm boxes.")?></span></a> <?php echo _("please leave message after tone to caller")?> 
    112112</p> 
    113113