Ignore:
Timestamp:
Sep 14, 2003, 6:12:27 PM (21 years ago)
Author:
z0rglub
Message:

Remove log informations registration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/identification.php

    r87 r104  
    9696}
    9797//-------------------------------------------------------------- visit as guest
    98 if ( $conf['acces'] == "libre" )
     98if ( $conf['access'] == 'free' )
    9999{
    100100  $vtp->addSession( $handle, 'guest_visit' );
     
    102102}
    103103//---------------------------------------------------------------- registration
    104 if ( $conf['acces'] == "libre" )
     104if ( $conf['access'] == 'free' )
    105105{
    106106  $vtp->addSession( $handle, 'register' );
     
    110110$code = $vtp->Display( $handle, 0 );
    111111echo $code;
    112 //------------------------------------------------------------ log informations
    113 $query = 'insert into '.PREFIX_TABLE.'history';
    114 $query.= '(date,login,IP,page) values';
    115 $query.= "('".time()."', '".$user['pseudo'];
    116 $query.= "','$REMOTE_ADDR','identification');";
    117 $result = mysql_query( $query );
    118112?>
Note: See TracChangeset for help on using the changeset viewer.