### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-config-sample.php
===================================================================
--- wp-config-sample.php	(revision 12527)
+++ wp-config-sample.php	(working copy)
@@ -16,13 +16,13 @@
 
 // ** MySQL settings - You can get this info from your web host ** //
 /** The name of the database for WordPress */
-define('DB_NAME', 'putyourdbnamehere');
+define('DB_NAME', 'dbnamehere');
 
 /** MySQL database username */
 define('DB_USER', 'usernamehere');
 
 /** MySQL database password */
-define('DB_PASSWORD', 'yourpasswordhere');
+define('DB_PASSWORD', 'passwordhere');
 
 /** MySQL hostname */
 define('DB_HOST', 'localhost');
Index: wp-admin/setup-config.php
===================================================================
--- wp-admin/setup-config.php	(revision 12527)
+++ wp-admin/setup-config.php	(working copy)
@@ -169,13 +169,13 @@
 	foreach ($configFile as $line_num => $line) {
 		switch (substr($line,0,16)) {
 			case "define('DB_NAME'":
-				$configFile[$line_num] = str_replace("putyourdbnamehere", $dbname, $line);
+				$configFile[$line_num] = str_replace("dbnamehere", $dbname, $line);
 				break;
 			case "define('DB_USER'":
 				$configFile[$line_num] = str_replace("'usernamehere'", "'$uname'", $line);
 				break;
 			case "define('DB_PASSW":
-				$configFile[$line_num] = str_replace("'yourpasswordhere'", "'$passwrd'", $line);
+				$configFile[$line_num] = str_replace("'passwordhere'", "'$passwrd'", $line);
 				break;
 			case "define('DB_HOST'":
 				$configFile[$line_num] = str_replace("localhost", $dbhost, $line);
