Issue:
Change folder permissions in ProcessMaker
Cause:
Nuevo requerimiento
Solution:
Se cambio los permisos de los files and directories
15 lines
352 B
PHP
15 lines
352 B
PHP
<?php
|
|
|
|
$chartType = isset ( $_GET['chart']) ? $_GET['chart'] : '1' ;
|
|
|
|
// use the chart class to build the chart:
|
|
require_once ( "class.openFlash.php" );
|
|
include_once( 'open-flash-chart.php' );
|
|
$chartsObj = new openFlashClass();
|
|
|
|
if ( method_exists( $chartsObj, $chartType) ) {
|
|
$chartsObj->{$chartType}();
|
|
die;
|
|
}
|
|
|