g613 / asterisk-cdr-viewer

Simple and fast viewer for asterisk CDRs / recordings
54 stars 33 forks source link

Error in index.php #30

Closed varnav closed 7 years ago

varnav commented 8 years ago

I'm getting the following error:

PHP Parse error: syntax error, unexpected '[' in /var/www/astcdr/index.php on line 23

m0ps commented 8 years ago

Replace

$startmonth = is_blank($_REQUEST['startmonth']) ? date('m') : printf('%02d',_REQUEST['startmonth']);

with

$startmonth = is_blank($_REQUEST['startmonth']) ? date('m') : printf('%02d',$_REQUEST['startmonth']);
g613 commented 7 years ago

this should be fixed in latest versions.