Files
luos/gulliver/thirdparty/html2ps_pdf/render.queue.class.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

19 lines
275 B
PHP

<?php
class RenderQueue {
var $_root_context;
function RenderQueue() {
$this->set_root_context(null);
}
function get_root_context() {
return $this->_root_context;
}
function set_root_context(&$context) {
$this->_root_context =& $context;
}
}
?>