Index: wp-admin/includes/menu.php
===================================================================
--- wp-admin/includes/menu.php	(revision 19067)
+++ wp-admin/includes/menu.php	(working copy)
@@ -215,7 +215,8 @@
 }
 
 // Remove the last menu item if it is a separator.
-$last_menu_key = array_pop( $last_menu_key = array_keys( $menu ) );
+$last_menu_key = array_keys( $menu );
+$last_menu_key = array_pop( $last_menu_key );
 if ( !empty( $menu ) && 'wp-menu-separator' == $menu[ $last_menu_key ][ 4 ] )
 	unset( $menu[ $last_menu_key ] );
 unset( $last_menu_key );
Index: wp-includes/pomo/mo.php
===================================================================
--- wp-includes/pomo/mo.php	(revision 19067)
+++ wp-includes/pomo/mo.php	(working copy)
@@ -195,7 +195,8 @@
 			$translation = $reader->substr( $strings, $t['pos'], $t['length'] );
 
 			if ('' === $original) {
-				$this->set_headers($this->make_headers($translation));
+				$headers = $this->make_headers($translation);
+				$this->set_headers($headers);
 			} else {
 				$entry = &$this->make_entry($original, $translation);
 				$this->entries[$entry->key()] = &$entry;
