karlma / fusionpbx

Automatically exported from code.google.com/p/fusionpbx
0 stars 0 forks source link

Extension Summary problem #939

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When using the Extension Summary, the dropdowns that use date/times specified 
in the select query in the current format do not work with postgresql at least.

For example the following does not work:

$sql .= "and start_stamp >= '".date('Y-m-d')." "."00:00.000' "; break; //today

This does:

$sql .= "and start_stamp >= '".date('Y-m-d')." "."00:00:00' "; break; //today

Original issue reported on code.google.com by Digitald...@gmail.com on 29 Apr 2015 at 8:14

GoogleCodeExporter commented 9 years ago
Fixed in dev branch

Original comment by Digitald...@gmail.com on 29 Apr 2015 at 8:46