Changeset 2567
- Timestamp:
- 09/17/06 05:02:56 (7 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/modules/core/functions.inc.php
r2547 r2567 2275 2275 $extenInfo=core_users_get($extdisplay); 2276 2276 extract($extenInfo); 2277 if (is _array($deviceInfo))2277 if (isset($deviceInfo) && is_array($deviceInfo)) 2278 2278 extract($deviceInfo); 2279 2279 freepbx/trunk/amp_conf/htdocs/admin/modules/core/page.general.php
r2243 r2567 109 109 <input type="text" size="2" name="VM_GAIN" value="<?php echo htmlspecialchars($VM_GAIN)?>"/> 110 110 <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")?> 112 112 </p> 113 113
