Changeset 12988
- Timestamp:
- 12/04/11 17:19:13 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.10/amp_conf/htdocs/admin/libraries/view.functions.php
r12941 r12988 108 108 } 109 109 header("Content-type: ".$mimetype); 110 ob_start( $amp_conf['buffering_callback']);110 ob_start(); 111 111 include($fullpath); 112 112 ob_end_flush(); freepbx/branches/2.10/libfreepbx.install.php
r12976 r12988 1452 1452 $freepbx_conf->define_conf_setting('MODULEADMIN_SKIP_CACHE',$set); 1453 1453 1454 // buffering_callback1455 $set['value'] = 'sprintf';1456 $set['options'] = '';1457 $set['name'] = 'ob_start callback';1458 $set['description'] = 'This is the callback that will be passed to ob_start. In its default state, ob_gzhandler will be passed which will case all data passed directly by the system to be compressed set this to be blank or something else if this creates issues.';1459 $set['emptyok'] = 0;1460 $set['readonly'] = 0;1461 $set['hidden'] = 1;1462 $set['type'] = CONF_TYPE_TEXT;1463 $freepbx_conf->define_conf_setting('buffering_callback',$set);1464 $set['hidden'] = 0;1465 1466 1467 1454 // 1468 1455 // CATEGORY: Flash Operator Panel … … 2209 2196 // ASTCONFAPP 2210 2197 $set['value'] = 'app_meetme'; 2211 $set['options'] = 'app_meetme, app_confbridge';2198 $set['options'] = array('app_meetme', 'app_confbridge'); 2212 2199 $set['defaultval'] =& $set['value']; 2213 2200 $set['readonly'] = 0; … … 2216 2203 $set['module'] = ''; 2217 2204 $set['category'] = 'Dialplan and Operational'; 2218 $set['emptyok'] = 1;2205 $set['emptyok'] = 0; 2219 2206 $set['name'] = 'Conference Room App'; 2220 $set['description'] = 'The asterisk application to use for conferencing. ';2207 $set['description'] = 'The asterisk application to use for conferencing. If only one is compiled into asterisk, FreePBX will auto detect and change this value if set wrong.'; 2221 2208 $set['type'] = CONF_TYPE_SELECT; 2222 2209 $freepbx_conf->define_conf_setting('ASTCONFAPP', $set); modules/branches/2.10/backup/page.backup.php
r12969 r12988 62 62 } 63 63 64 ob_start( $amp_conf['buffering_callback']);64 ob_start(); 65 65 header('Content-Type: text/event-stream'); 66 66 header('Cache-Control: no-cache');
