Changeset 7593
- Timestamp:
- 04/27/09 16:54:36 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/lib/defines.php
r6764 r7593 97 97 if (isset($_POST[$test_var])) { 98 98 global $$test_var; 99 $$test_var = $_POST[$test_var];99 $$test_var = htmlspecialchars($_POST[$test_var]); 100 100 } elseif (isset($_GET[$test_var])) { 101 101 global $$test_var; 102 $$test_var = $_GET[$test_var];102 $$test_var = htmlspecialchars($_GET[$test_var]); 103 103 } 104 104 }
