Changeset 628 for trunk/wp-admin/users.php
- Timestamp:
- 12/18/2003 09:36:13 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/users.php
r601 r628 3 3 /* <Team> */ 4 4 5 $ b2varstoreset = array('action','standalone','redirect','profile');6 for ($i=0; $i<count($ b2varstoreset); $i += 1) {7 $ b2var = $b2varstoreset[$i];8 if (!isset($$ b2var)) {9 if (empty($HTTP_POST_VARS["$ b2var"])) {10 if (empty($HTTP_GET_VARS["$ b2var"])) {11 $$ b2var = '';5 $wpvarstoreset = array('action','standalone','redirect','profile'); 6 for ($i=0; $i<count($wpvarstoreset); $i += 1) { 7 $wpvar = $wpvarstoreset[$i]; 8 if (!isset($$wpvar)) { 9 if (empty($HTTP_POST_VARS["$wpvar"])) { 10 if (empty($HTTP_GET_VARS["$wpvar"])) { 11 $$wpvar = ''; 12 12 } else { 13 $$ b2var = $HTTP_GET_VARS["$b2var"];13 $$wpvar = $HTTP_GET_VARS["$wpvar"]; 14 14 } 15 15 } else { 16 $$ b2var = $HTTP_POST_VARS["$b2var"];16 $$wpvar = $HTTP_POST_VARS["$wpvar"]; 17 17 } 18 18 }
Note: See TracChangeset
for help on using the changeset viewer.