? .patch ? files ? mw.patch ? tmp.patch ? sites/all/modules Index: sites/default/settings.php =================================================================== RCS file: /cvs/drupal/drupal/sites/default/Attic/settings.php,v retrieving revision 1.39.2.3 diff -u -F^f -r1.39.2.3 settings.php --- sites/default/settings.php 9 Jul 2007 04:28:12 -0000 1.39.2.3 +++ sites/default/settings.php 27 Aug 2007 14:19:42 -0000 @@ -90,7 +90,7 @@ * $db_url = 'mysqli://username:password@localhost/databasename'; * $db_url = 'pgsql://username:password@localhost/databasename'; */ -$db_url = 'mysql://username:password@localhost/databasename'; +$db_url = 'mysqli://root:root@localhost/drproject'; $db_prefix = ''; /** Index: profiles/drupalorg_testing/drupalorg_testing.profile =================================================================== RCS file: /cvs/drupal-contrib/contributions/profiles/drupalorg_testing/drupalorg_testing.profile,v retrieving revision 1.28 diff -u -F^f -r1.28 drupalorg_testing.profile --- profiles/drupalorg_testing/drupalorg_testing.profile 15 Aug 2007 18:28:46 -0000 1.28 +++ profiles/drupalorg_testing/drupalorg_testing.profile 27 Aug 2007 14:19:44 -0000 @@ -452,7 +452,7 @@ function _drupalorg_testing_create_users $edit['status'] = 1; // Put all of these custom users into the 'User switchers' role, too. - // We have to flip the roles array here, because that's what user_save() is expecting. + // We have to flip the roles array here, because that\'s what user_save() is expecting. $edit['roles'] = array_flip(array_merge(array(D_O_ROLE_SWITCH), $roles)); for ($i = 1; $i <= D_O_NUM_USERS_PER_ROLE; $i++) { @@ -487,7 +487,7 @@ function _drupalorg_testing_create_proje t('Translations') => t('Drupal uses English by default, but may be translated to many other languages. To install these translations, unzip them and import the .po file through Drupal\'s administration interface for localization. You will need to turn on the locale module if it\'s not already enabled. You can check the completeness of translations on the translations status page.'), ); foreach ($terms as $name => $description) { - drupal_execute('taxonomy_form_term', array('name' => $name, 'description' => $description), $vid); + // drupal_execute('taxonomy_form_term', array('name' => $name, 'description' => $description), $vid); } // Add module categories. @@ -522,7 +522,7 @@ function _drupalorg_testing_create_proje t('Views'), ); foreach ($terms as $name) { - drupal_execute('taxonomy_form_term', array('name' => $name, 'parent' => $parent), $vid); + // drupal_execute('taxonomy_form_term', array('name' => $name, 'parent' => $parent), $vid); } // Add release versions. @@ -532,7 +532,7 @@ function _drupalorg_testing_create_proje '4.3.x', '4.2.x', '4.1.x', '4.0.x', ); foreach ($terms as $name) { - drupal_execute('taxonomy_form_term', array('name' => $name), $vid); + // drupal_execute('taxonomy_form_term', array('name' => $name), $vid); } // Add release types. @@ -548,7 +548,7 @@ function _drupalorg_testing_create_proje t('New features'), ); foreach ($terms as $name) { - drupal_execute('taxonomy_form_term', array('name' => $name), $vid); + // drupal_execute('taxonomy_form_term', array('name' => $name), $vid); } }