Split of langage files
git-svn-id: http://piwigo.org/svn/trunk@364 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
19b4964996
commit
78df1f97d3
34 changed files with 1004 additions and 1036 deletions
|
|
@ -217,7 +217,7 @@ if ( isset( $_POST['submit'] ) )
|
|||
$query.= ';';
|
||||
mysql_query( $query );
|
||||
|
||||
$query = 'UPDATE '.PREFIX_TABLE.'users';
|
||||
$query = 'UPDATE '.USERS_TABLE;
|
||||
$query.= ' SET';
|
||||
foreach ( $default_user_infos as $i => $default_user_info ) {
|
||||
if ( $i > 0 ) $query.= ',';
|
||||
|
|
@ -257,7 +257,7 @@ else
|
|||
}
|
||||
|
||||
$query = 'SELECT '.implode( ',', $default_user_infos );
|
||||
$query.= ' FROM '.PREFIX_TABLE.'users';
|
||||
$query.= ' FROM '.USERS_TABLE;
|
||||
$query.= " WHERE username = 'guest'";
|
||||
$query.= ';';
|
||||
$row = mysql_fetch_array( mysql_query( $query ) );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue