Ignore:
Timestamp:
May 13, 2003, 12:02:06 PM (21 years ago)
Author:
z0rglub
Message:

2003.05.13 user_add and user_modify added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/user.inc.php

    r2 r9  
    11<?php
    22/***************************************************************************
    3  *                   user.inc.php is a part of PhpWebGallery               *
    4  *                            -------------------                          *
    5  *   last update          : Saturday, October 26, 2002                     *
    6  *   email                : pierrick@z0rglub.com                           *
     3 *                               user.inc.php                              *
     4 *                            ------------------                           *
     5 *   application          : PhpWebGallery 1.3                              *
     6 *   author               : Pierrick LE GALL <pierrick@z0rglub.com>        *
    77 *                                                                         *
    88 ***************************************************************************
     
    2020// Example :
    2121//            status --> $user['status']
    22 $infos = array( 'id', 'pseudo', 'mail_address', 'nb_image_line',
     22$infos = array( 'id', 'username', 'mail_address', 'nb_image_line',
    2323                'nb_line_page', 'status', 'theme', 'language', 'maxwidth',
    2424                'maxheight', 'expand', 'show_nb_comments', 'short_period',
     
    7272if ( !$query_done )
    7373{
    74   $query_user .= " where pseudo = 'visiteur'";
     74  $query_user .= ' where id = 2';
    7575  $user['is_the_guest'] = true;
    7676}
Note: See TracChangeset for help on using the changeset viewer.