Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 12515)
+++ wp-includes/comment-template.php	(working copy)
@@ -970,7 +970,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-content/themes/classic/sidebar.php
===================================================================
--- wp-content/themes/classic/sidebar.php	(revision 12515)
+++ 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-content/themes/classic/header.php
===================================================================
--- wp-content/themes/classic/header.php	(revision 12515)
+++ 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>
Index: wp-content/themes/default/archives.php
===================================================================
--- wp-content/themes/default/archives.php	(revision 12515)
+++ 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/default/sidebar.php
===================================================================
--- wp-content/themes/default/sidebar.php	(revision 12515)
+++ 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/includes/export.php
===================================================================
--- wp-admin/includes/export.php	(revision 12515)
+++ 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-admin/import/wordpress.php
===================================================================
--- wp-admin/import/wordpress.php	(revision 12515)
+++ 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] ) ) {
