diff options
author | rub <rub@piwigo.org> | 2006-03-13 22:44:49 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-03-13 22:44:49 +0000 |
commit | 47046eade281ef8073eec9b088b8a4d5bd20d23d (patch) | |
tree | 17c8c5c4e2aa959897509657935292964e866c23 | |
parent | 6228c0a07f1c89cf0e9ca86eff6ccbd4a05ca28e (diff) |
Step 6 improvement issue 0000301:
o set webmaster status on installation of PWG
git-svn-id: http://piwigo.org/svn/trunk@1077 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 68b98547d..11c68f60f 100644 --- a/install.php +++ b/install.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $RCSfile$ @@ -311,7 +311,7 @@ INSERT INTO '.USERS_TABLE.' INSERT INTO '.USER_INFOS_TABLE.' (user_id,status,language) VALUES - (1, \'admin\', \''.$language.'\') + (1, \'webmaster\', \''.$language.'\') ;'; mysql_query($query); |