Index: database.mysql =================================================================== RCS file: /cvs/drupal/drupal/database/database.mysql,v retrieving revision 1.174 diff -u -F^f -r1.174 database.mysql --- database.mysql 23 Mar 2005 20:36:41 -0000 1.174 +++ database.mysql 11 Apr 2005 23:10:07 -0000 @@ -795,7 +795,7 @@ INSERT INTO permission VALUES (1,'access content',0); INSERT INTO role (rid, name) VALUES (2, 'authenticated user'); -INSERT INTO permission VALUES (2,'access comments, access content, post comments, post comments without approval',0); +INSERT INTO permission VALUES (2,'access comments, access content, access user profiles, post comments, post comments without approval',0); REPLACE variable SET name='update_start', value='s:10:"2005-03-21";'; REPLACE variable SET name='theme_default', value='s:10:"bluemarine";'; Index: database.pgsql =================================================================== RCS file: /cvs/drupal/drupal/database/database.pgsql,v retrieving revision 1.110 diff -u -F^f -r1.110 database.pgsql --- database.pgsql 3 Apr 2005 08:56:48 -0000 1.110 +++ database.pgsql 11 Apr 2005 23:10:08 -0000 @@ -797,7 +797,7 @@ INSERT INTO permission VALUES (1,'access content',0); INSERT INTO role (rid, name) VALUES (2, 'authenticated user'); -INSERT INTO permission VALUES (2,'access comments, access content, post comments, post comments without approval',0); +INSERT INTO permission VALUES (2,'access comments, access content, access user profiles, post comments, post comments without approval',0); INSERT INTO blocks(module,delta,status) VALUES('user', 0, 1); INSERT INTO blocks(module,delta,status) VALUES('user', 1, 1); Index: updates.inc =================================================================== RCS file: /cvs/drupal/drupal/database/updates.inc,v retrieving revision 1.100.2.2 diff -u -F^f -r1.100.2.2 updates.inc --- updates.inc 8 Apr 2005 13:19:25 -0000 1.100.2.2 +++ updates.inc 11 Apr 2005 23:10:08 -0000 @@ -104,7 +104,8 @@ "2005-02-23" => "update_125", "2005-03-03" => "update_126", "2005-03-18" => "update_127", - "2005-03-21" => "update_128" + "2005-03-21" => "update_128", + "2005-04-11" => "update_129" ); function update_32() { @@ -2350,4 +2351,11 @@ function update_128() { return $ret; } +function update_129() { + $ret = array(); + + $ret[] = update_sql("UPDATE {permission} SET perm = CONCAT(perm, ', access user profiles') WHERE perm NOT LIKE '%access user profiles%'"); + + return $ret; +} ?>