Changeset 628 for trunk/wp-login.php
- Timestamp:
- 12/18/2003 09:36:13 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r601 r628 21 21 } 22 22 23 $ b2varstoreset = array('action','mode','error','text','popupurl','popuptitle');24 25 for ($i = 0; $i < count($ b2varstoreset); $i = $i + 1) {26 $ b2var = $b2varstoreset[$i];27 if (!isset($$ b2var)) {28 if (empty($HTTP_POST_VARS["$ b2var"])) {29 if (empty($HTTP_GET_VARS["$ b2var"])) {30 $$ b2var = '';23 $wpvarstoreset = array('action','mode','error','text','popupurl','popuptitle'); 24 25 for ($i = 0; $i < count($wpvarstoreset); $i = $i + 1) { 26 $wpvar = $wpvarstoreset[$i]; 27 if (!isset($$wpvar)) { 28 if (empty($HTTP_POST_VARS["$wpvar"])) { 29 if (empty($HTTP_GET_VARS["$wpvar"])) { 30 $$wpvar = ''; 31 31 } else { 32 $$ b2var = $HTTP_GET_VARS["$b2var"];32 $$wpvar = $HTTP_GET_VARS["$wpvar"]; 33 33 } 34 34 } else { 35 $$ b2var = $HTTP_POST_VARS["$b2var"];35 $$wpvar = $HTTP_POST_VARS["$wpvar"]; 36 36 } 37 37 }
Note: See TracChangeset
for help on using the changeset viewer.