Changeset 3048
- Timestamp:
- 11/11/06 17:13:18 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/cdr.php
r2418 r3048 21 21 if (isset($_POST[$test_var])) { 22 22 global $$test_var; 23 $$test_var = mysql_real_escape_string($_POST[$test_var]);23 $$test_var = $_POST[$test_var]; 24 24 } elseif (isset($_GET[$test_var])) { 25 25 global $$test_var; 26 $$test_var = mysql_real_escape_string($_GET[$test_var]);26 $$test_var = $_GET[$test_var]; 27 27 } 28 28 }
