<?php
/* Please see the README and LICENSE files. */
/**
* If it was enabled in the startup configuration, this will wrap a buffering
* output manager around all output. Then it will submit a request to the
* shutdown manager to publish the output manager, no matter what, upon
* processing termination.
*
* @uses Output_Manager
* @uses System_Shutdown
*/
if($output_manager_on){
global $__system_output_manager__;
$__system_output_manager__ = new Output_Manager_Standard();
System_Shutdown::add("Output_TemplateWrap","end_wrap",$__system_output_manager__);
}
?>