source: trunk/identification.php @ 404

Last change on this file since 404 was 404, checked in by z0rglub, 20 years ago

an unknown function was insidiously inserted in revision 3.17 :-)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// |                          identification.php                           |
4// +-----------------------------------------------------------------------+
5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
6// | branch        : BSF (Best So Far)                                     |
7// +-----------------------------------------------------------------------+
8// | file          : $RCSfile$
9// | last update   : $Date: 2004-03-31 20:21:42 +0000 (Wed, 31 Mar 2004) $
10// | last modifier : $Author: z0rglub $
11// | revision      : $Revision: 404 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28//--------------------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31
32//-------------------------------------------------------------- identification
33$errors = array();
34if ( isset( $_POST['login'] ) )
35{
36  // retrieving the encrypted password of the login submitted
37  $query = 'SELECT password';
38  $query.= ' FROM '.USERS_TABLE;
39  $query.= " WHERE username = '".$_POST['username']."';";
40  $row = mysql_fetch_array( mysql_query( $query ) );
41  if( $row['password'] == md5( $_POST['password'] ) )
42  {
43    $session_id = session_create( $_POST['username'] );
44    $url = 'category.php?id='.$session_id;
45    header( 'Request-URI: '.$url );
46    header( 'Content-Location: '.$url ); 
47    header( 'Location: '.$url );
48    exit();
49  }
50  else
51  {
52    array_push( $errors, $lang['invalid_pwd'] );
53  }
54}
55//----------------------------------------------------- template initialization
56//
57// Start output of page
58//
59$title = $lang['ident_page_title'];
60include(PHPWG_ROOT_PATH.'include/page_header.php');
61
62$template->set_filenames( array('identification'=>'identification.tpl') );
63
64$template->assign_vars(
65  array(
66    'MAIL_ADMIN' => $conf['mail_webmaster'],
67   
68    'L_TITLE' => $lang['ident_title'],
69    'L_USERNAME' => $lang['login'],
70    'L_PASSWORD' => $lang['password'],
71    'L_LOGIN' => $lang['submit'],
72    'L_GUEST' => $lang['ident_guest_visit'],
73    'L_REGISTER' => $lang['ident_register'],
74    'L_FORGET' => $lang['ident_forgotten_password'], 
75   
76    'T_STYLE' => $user['template'],
77   
78    'F_LOGIN_ACTION' => add_session_id('identification.php')
79    ));
80//-------------------------------------------------------------- errors display
81if ( sizeof( $errors ) != 0 )
82{
83  $template->assign_block_vars('errors',array());
84  for ( $i = 0; $i < sizeof( $errors ); $i++ )
85  {
86    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
87  }
88}
89
90//-------------------------------------------------------------- visit as guest
91if ( $conf['access'] == 'free' )
92{
93  $template->assign_block_vars('free_access',array());
94}
95//----------------------------------------------------------- html code display
96$template->pparse('identification');
97include(PHPWG_ROOT_PATH.'include/page_tail.php');
98?>
Note: See TracBrowser for help on using the repository browser.