Changeset 3969
- Timestamp:
- 07/05/2006 03:59:40 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-functions.php
r3946 r3969 1960 1960 1961 1961 if (!isset($$var)) { 1962 if (empty($_REQUEST["$var"])) { 1963 $$var = ''; 1962 if (empty($_POST["$var"])) { 1963 if (empty($_GET["$var"])) 1964 $$var = ''; 1965 else 1966 $$var = $_GET["$var"]; 1964 1967 } else { 1965 $$var = $_REQUEST["$var"]; 1966 unset($_REQUEST["$wpvar"]); 1968 $$var = $_POST["$var"]; 1967 1969 } 1968 1970 }
Note: See TracChangeset
for help on using the changeset viewer.