PHP fatal error
Jamroom Hosting
I have logged in, thanks. Im not seeing how to trigger the error. do you know steps to get the error to occur?
{/if}
{jrCore_lang skin="jrAudioPro2" id=51 default="Welcome to"} {$_conf.jrCore_system_name}
{jrCore_lang skin="jrAudioPro2" id=53 default="United Kingdom"} ·
{jrCore_lang skin="jrAudioPro2" id=54 default="Independent"} ·
{jrCore_lang skin="jrAudioPro2" id=55 default="Record Label"}
{/if}
Welcome to United Kingdom Independent Record Label
// Graph Support
$_tmp = array(
'title' => 'Daily Active Users',
'function' => 'jrUser_graph_daily_active_users',
'group' => 'admin'
);
jrCore_register_module_feature('jrGraph', 'graph_config', 'jrUser', 'daily_active_users', $_tmp);
* Daily Active Users
* @param $module string Module
* @param $name string Name of Graph to create
* @param $_args array Passed in Parameters
* @return array
*/
function jrUser_graph_daily_active_users($module, $name, $_args)
{
$dys = (int) $_args['days'];
$old = (time() - ($dys * 86400));
$old = jrCore_format_time($old, false, '%Y%m%d');
return array(
'_sets' => array(
0 => array(
'label' => "Daily Active Users",
'date_format' => '%m/%d/%Y',
'minTickSize' => "[1, 'day']",
'type' => 'line',
'pointRadius' => 3,
'_data' => jrCore_get_graph_stat_values('jrUser', 'active_users', 'daily', $old)
)
)
);
}
{if count($results) > 0}
{if is_array($results) && count($results) > 0}