Update the extension summary in preparation to expand it further.
This commit is contained in:
parent
29ef9d4b6d
commit
2d03d7f961
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
The Initial Developer of the Original Code is
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2014
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2016
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
|
|
@ -25,10 +25,11 @@
|
|||
Luis Daniel Lucio Quiroz <dlucio@okay.com.mx>
|
||||
*/
|
||||
|
||||
require_once "root.php";
|
||||
require_once "resources/require.php";
|
||||
//includes
|
||||
require_once "root.php";
|
||||
require_once "resources/require.php";
|
||||
|
||||
//check permisisions
|
||||
//permisisions
|
||||
require_once "resources/check_auth.php";
|
||||
if (permission_exists('xml_cdr_view')) {
|
||||
//access granted
|
||||
|
|
@ -46,12 +47,11 @@ require_once "resources/require.php";
|
|||
require_once "resources/header.php";
|
||||
|
||||
//retrieve submitted data
|
||||
$quick_select = check_str($_POST['quick_select']);
|
||||
$start_stamp_begin = check_str($_POST['start_stamp_begin']);
|
||||
$start_stamp_end = check_str($_POST['start_stamp_end']);
|
||||
$include_internal = check_str($_POST['include_internal']);
|
||||
|
||||
$quick_select = (sizeof($_POST) == 0) ? 1 : $quick_select; //set default
|
||||
$quick_select = check_str($_REQUEST['quick_select']);
|
||||
$start_stamp_begin = check_str($_REQUEST['start_stamp_begin']);
|
||||
$start_stamp_end = check_str($_REQUEST['start_stamp_end']);
|
||||
$include_internal = check_str($_REQUEST['include_internal']);
|
||||
$quick_select = (sizeof($_REQUEST) == 0) ? 1 : $quick_select; //set default
|
||||
|
||||
//get current extension info
|
||||
$sql = "select ";
|
||||
|
|
|
|||
Loading…
Reference in New Issue