### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-content/themes/default/sidebar.php
===================================================================
--- wp-content/themes/default/sidebar.php	(revision 12559)
+++ wp-content/themes/default/sidebar.php	(working copy)
@@ -55,11 +55,11 @@
 
 			<li><h2>Archives</h2>
 				<ul>
-				<?php wp_get_archives('type=monthly'); ?>
+				<?php wp_get_archives(array('type' => 'monthly')); ?>
 				</ul>
 			</li>
 
-			<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
+			<?php wp_list_categories(array('show_count' => 1, 'title_li' => '<h2>Categories</h2>')); ?>
 		</ul>
 		<ul>
 			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
Index: wp-admin/import/wordpress.php
===================================================================
--- wp-admin/import/wordpress.php	(revision 12559)
+++ wp-admin/import/wordpress.php	(working copy)
@@ -360,7 +360,7 @@
 		unset( $custom_taxonomies['link_category'] );
 		
 		$custom_taxonomies = array_keys( $custom_taxonomies );
-		$current_terms = (array) get_terms( $custom_taxonomies, 'get=all' );
+		$current_terms = (array) get_terms( $custom_taxonomies, array('get' => 'all') );
 		$taxonomies = array();
 		foreach ( $current_terms as $term ) {
 			if ( isset( $_terms[$term->taxonomy] ) ) {
Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 12559)
+++ wp-includes/comment-template.php	(working copy)
@@ -975,7 +975,7 @@
 	if ( !empty( $css_class ) ) {
 		echo ' class="'.$css_class.'" ';
 	}
-	$title = the_title_attribute( 'echo=0' );
+	$title = the_title_attribute( array('echo' => 0 ) );
 
 	echo apply_filters( 'comments_popup_link_attributes', '' );
 
Index: wp-trackback.php
===================================================================
--- wp-trackback.php	(revision 12559)
+++ wp-trackback.php	(working copy)
@@ -7,7 +7,7 @@
 
 if (empty($wp)) {
 	require_once('./wp-load.php');
-	wp('tb=1');
+	wp( array( 'tb' => '1' ) );
 }
 
 /**
Index: wp-admin/options-reading.php
===================================================================
--- wp-admin/options-reading.php	(revision 12559)
+++ wp-admin/options-reading.php	(working copy)
@@ -41,8 +41,8 @@
 	</label>
 	</p>
 <ul>
-	<li><?php printf("<label for='page_on_front'>".__('Front page: %s')."</label>", wp_dropdown_pages("name=page_on_front&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_on_front'))); ?></li>
-	<li><?php printf("<label for='page_for_posts'>".__('Posts page: %s')."</label>", wp_dropdown_pages("name=page_for_posts&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_for_posts'))); ?></li>
+	<li><?php printf("<label for='page_on_front'>" . __('Front page: %s') . "</label>", wp_dropdown_pages( array( 'name' => 'page_on_front', 'echo' => 0, 'show_option_none' => __('- Select -'), 'selected' => get_option('page_on_front')  ) ) ); ?></li>
+	<li><?php printf("<label for='page_for_posts'>". __('Posts page: %s') . "</label>", wp_dropdown_pages( array( 'name' => 'page_for_posts','echo' => 0, 'show_option_none' => __('- Select -'), 'selected' => get_option('page_for_posts') ) ) ); ?></li>
 </ul>
 <?php if ( 'page' == get_option('show_on_front') && get_option('page_for_posts') == get_option('page_on_front') ) : ?>
 <div id="front-page-warning" class="updated">
Index: wp-content/themes/classic/sidebar.php
===================================================================
--- wp-content/themes/classic/sidebar.php	(revision 12559)
+++ wp-content/themes/classic/sidebar.php	(working copy)
@@ -24,7 +24,7 @@
  </li>
  <li id="archives"><?php _e('Archives:'); ?>
 	<ul>
-	 <?php wp_get_archives('type=monthly'); ?>
+	 <?php wp_get_archives(array('type' => 'monthly')); ?>
 	</ul>
  </li>
  <li id="meta"><?php _e('Meta:'); ?>
Index: wp-includes/deprecated.php
===================================================================
--- wp-includes/deprecated.php	(revision 12559)
+++ wp-includes/deprecated.php	(working copy)
@@ -592,7 +592,7 @@
 function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
 	_deprecated_function( __FUNCTION__, '2.1', 'get_bookmarks()' );
 
-	$links = get_bookmarks("category=$category&orderby=$orderby&limit=$limit");
+	$links = get_bookmarks( array( 'category' => $category, 'orderby' => $orderby, 'limit' => $limit ) ) ;
 
 	$links_array = array();
 	foreach ($links as $link)
Index: wp-admin/includes/export.php
===================================================================
--- wp-admin/includes/export.php	(revision 12559)
+++ wp-admin/includes/export.php	(working copy)
@@ -51,7 +51,7 @@
 unset($custom_taxonomies['post_tag']);
 unset($custom_taxonomies['link_category']);
 $custom_taxonomies = array_keys($custom_taxonomies);
-$terms = (array) get_terms($custom_taxonomies, 'get=all');
+$terms = (array) get_terms($custom_taxonomies, array('get' => 'all'));
 
 /**
  * {@internal Missing Short Description}}
Index: wp-content/themes/default/archives.php
===================================================================
--- wp-content/themes/default/archives.php	(revision 12559)
+++ wp-content/themes/default/archives.php	(working copy)
@@ -16,7 +16,7 @@
 
 <h2>Archives by Month:</h2>
 	<ul>
-		<?php wp_get_archives('type=monthly'); ?>
+		<?php wp_get_archives(array('type' => 'monthly')); ?>
 	</ul>
 
 <h2>Archives by Subject:</h2>
Index: wp-content/themes/classic/header.php
===================================================================
--- wp-content/themes/classic/header.php	(revision 12559)
+++ wp-content/themes/classic/header.php	(working copy)
@@ -17,7 +17,7 @@
 	</style>
 
 	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
-	<?php wp_get_archives('type=monthly&format=link'); ?>
+	<?php wp_get_archives(array('type' => 'monthly', 'format' => 'link')); ?>
 	<?php //comments_popup_script(); // off by default ?>
 	<?php wp_head(); ?>
 </head>
