Changeset 280 for branches/release-1_3/register.php
- Timestamp:
- Jan 15, 2004, 6:06:45 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/release-1_3/register.php
r105 r280 71 71 $vtp->addSession( $handle, 'text' ); 72 72 $vtp->setVar( $handle, 'text.name', 'login' ); 73 $vtp->setVar( $handle, 'text.value', $_POST['login'] ); 73 if (isset( $_POST['login'])) 74 $vtp->setVar( $handle, 'text.value', $_POST['login'] ); 74 75 $vtp->closeSession( $handle, 'text' ); 75 76 $vtp->closeSession( $handle, 'line' ); … … 95 96 $vtp->addSession( $handle, 'text' ); 96 97 $vtp->setVar( $handle, 'text.name', 'mail_address' ); 97 $vtp->setVar( $handle, 'text.value', $_POST['mail_address'] ); 98 if (isset( $_POST['mail_address'])) 99 $vtp->setVar( $handle, 'text.value', $_POST['mail_address'] ); 98 100 $vtp->closeSession( $handle, 'text' ); 99 101 $vtp->closeSession( $handle, 'line' );
Note: See TracChangeset
for help on using the changeset viewer.