Index: wp-content/plugins/hello.php
===================================================================
--- wp-content/plugins/hello.php	(revision 3978)
+++ wp-content/plugins/hello.php	(working copy)
@@ -6,7 +6,7 @@
 Author: Matt Mullenweg
 Version: 1.5
 Author URI: http://photomatt.net/
-*/ 
+*/
 
 // These are the lyrics to Hello Dolly
 $lyrics = "Hello, Dolly
Index: wp-content/plugins/wp-db-backup.php
===================================================================
--- wp-content/plugins/wp-db-backup.php	(revision 3978)
+++ wp-content/plugins/wp-db-backup.php	(working copy)
@@ -11,10 +11,10 @@
 in turn was derived from phpMyAdmin.
 
 Many thanks to Owen (http://asymptomatic.net/wp/) for his patch
-   http://dev.wp-plugins.org/ticket/219
+http://dev.wp-plugins.org/ticket/219
 */
 
-// CHANGE THIS IF YOU WANT TO USE A 
+// CHANGE THIS IF YOU WANT TO USE A
 // DIFFERENT BACKUP LOCATION
 
 $rand = substr( md5( md5( DB_PASSWORD ) ), -5 );
@@ -332,41 +332,41 @@
 	/////////////////////////////////////////////////////////
 	function sql_addslashes($a_string = '', $is_like = FALSE)
 	{
-	        /*
-	                Better addslashes for SQL queries.
-	                Taken from phpMyAdmin.
-	        */
-	    if ($is_like) {
-	        $a_string = str_replace('\\', '\\\\\\\\', $a_string);
-	    } else {
-	        $a_string = str_replace('\\', '\\\\', $a_string);
-	    }
-	    $a_string = str_replace('\'', '\\\'', $a_string);
+		/*
+			Better addslashes for SQL queries.
+			Taken from phpMyAdmin.
+		*/
+		if ($is_like) {
+			$a_string = str_replace('\\', '\\\\\\\\', $a_string);
+		} else {
+			$a_string = str_replace('\\', '\\\\', $a_string);
+		}
+		$a_string = str_replace('\'', '\\\'', $a_string);
 
-	    return $a_string;
+		return $a_string;
 	} // function sql_addslashes($a_string = '', $is_like = FALSE)
 
 	///////////////////////////////////////////////////////////
 	function backquote($a_name)
 	{
-	        /*
-	                Add backqouotes to tables and db-names in
-	                SQL queries. Taken from phpMyAdmin.
-	        */
-	    if (!empty($a_name) && $a_name != '*') {
-	        if (is_array($a_name)) {
-	             $result = array();
-	             reset($a_name);
-	             while(list($key, $val) = each($a_name)) {
-	                 $result[$key] = '`' . $val . '`';
-	             }
-	             return $result;
-	        } else {
-	            return '`' . $a_name . '`';
-	        }
-	    } else {
-	        return $a_name;
-	    }
+		/*
+			Add backqouotes to tables and db-names in
+			SQL queries. Taken from phpMyAdmin.
+		*/
+		if (!empty($a_name) && $a_name != '*') {
+			if (is_array($a_name)) {
+				$result = array();
+				reset($a_name);
+				while(list($key, $val) = each($a_name)) {
+					$result[$key] = '`' . $val . '`';
+				}
+				return $result;
+			} else {
+				return '`' . $a_name . '`';
+			}
+		} else {
+			return $a_name;
+		}
 	} // function backquote($a_name, $do_it = TRUE)
 
 	/////////////
@@ -421,7 +421,7 @@
 		Alain Wolf, Zurich - Switzerland
 		Website: http://restkultur.ch/personal/wolf/scripts/db_backup/
 
-		Modified by Scott Merril (http://www.skippy.net/) 
+		Modified by Scott Merril (http://www.skippy.net/)
 		to use the WordPress $wpdb object
 		*/
 
@@ -441,7 +441,7 @@
 			$this->stow("\n");
 			$this->stow("DROP TABLE IF EXISTS " . $this->backquote($table) . ";\n");
 
-			// 
+			//
 			//Table structure
 			// Comment in SQL-file
 			$this->stow("\n\n");
@@ -539,19 +539,19 @@
 	} // end backup_table()
 
 	function return_bytes($val) {
-	   $val = trim($val);
-	   $last = strtolower($val{strlen($val)-1});
-	   switch($last) {
-	       // The 'G' modifier is available since PHP 5.1.0
-	       case 'g':
-	           $val *= 1024;
-	       case 'm':
-	           $val *= 1024;
-	       case 'k':
-	           $val *= 1024;
-	   }
+		$val = trim($val);
+		$last = strtolower($val{strlen($val)-1});
+		switch($last) {
+			// The 'G' modifier is available since PHP 5.1.0
+			case 'g':
+				$val *= 1024;
+			case 'm':
+				$val *= 1024;
+			case 'k':
+				$val *= 1024;
+		}
 
-	   return $val;
+		return $val;
 	}
 
 	////////////////////////////
@@ -635,7 +635,7 @@
 			$randomish = md5(time());
 			$boundary = "==WPBACKUP-BY-SKIPPY-$randomish";
 			$fp = fopen($diskfile,"rb");
-			$file = fread($fp,filesize($diskfile)); 
+			$file = fread($fp,filesize($diskfile));
 			$this->close($fp);
 			$data = chunk_split(base64_encode($file));
 			$headers = "MIME-Version: 1.0\n";
@@ -645,7 +645,7 @@
 			$message = sprintf(__("Attached to this email is\n   %1s\n   Size:%2s kilobytes\n"), $filename, round(filesize($diskfile)/1024));
 			// Add a multipart boundary above the plain message
 			$message = "This is a multi-part message in MIME format.\n\n" .
-		        	"--{$boundary}\n" .
+				"--{$boundary}\n" .
 				"Content-Type: text/plain; charset=\"utf-8\"\n" .
 				"Content-Transfer-Encoding: 7bit\n\n" .
 				$message . "\n\n";
@@ -859,8 +859,8 @@
 
 		$schedule = intval(get_option('wp_cron_backup_schedule'));
 		if (0 == $schedule) {
-		        // Scheduled backup is disabled
-		        return;
+			// Scheduled backup is disabled
+			return;
 		}
 
 		global $wpdb;
@@ -884,7 +884,7 @@
 
 function wpdbBackup_init() {
 	global $mywpdbbackup;
-	$mywpdbbackup = new wpdbBackup(); 	
+	$mywpdbbackup = new wpdbBackup();
 }
 
 add_action('plugins_loaded', 'wpdbBackup_init');

