diff --git a/wp-content/themes/twentyeleven/footer.php b/wp-content/themes/twentyeleven/footer.php
index 54e7c42aa15de079b6539c3192881c6177192cac..27bbf11e49bb052a813ee5ae75e46fbbeb1d2d6d 100644
--- a/wp-content/themes/twentyeleven/footer.php
+++ b/wp-content/themes/twentyeleven/footer.php
@@ -25,7 +25,7 @@
 
 			<div id="site-generator">
 				<?php do_action( 'twentyeleven_credits' ); ?>
-				<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
+				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
 			</div>
 	</footer><!-- #colophon -->
 </div><!-- #page -->
diff --git a/wp-content/themes/twentyeleven/inc/theme-options.php b/wp-content/themes/twentyeleven/inc/theme-options.php
index e9078b7cfe9721fc0d92a86ab5e2372bb4f7dc71..fd144b65fc7911ea29531218514094bfc3a3a014 100644
--- a/wp-content/themes/twentyeleven/inc/theme-options.php
+++ b/wp-content/themes/twentyeleven/inc/theme-options.php
@@ -118,7 +118,7 @@ function twentyeleven_theme_options_help() {
 
 	$sidebar = '<p><strong>' . __( 'For more information:', 'twentyeleven' ) . '</strong></p>' .
 		'<p>' . __( '<a href="https://codex.wordpress.org/Appearance_Theme_Options_Screen" target="_blank">Documentation on Theme Options</a>', 'twentyeleven' ) . '</p>' .
-		'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>', 'twentyeleven' ) . '</p>';
+		'<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>', 'twentyeleven' ) . '</p>';
 
 	$screen = get_current_screen();
 
diff --git a/wp-content/themes/twentyeleven/inc/widgets.php b/wp-content/themes/twentyeleven/inc/widgets.php
index 7d60f7056a37882ad7ede32a3283708b8703913d..501301ebb2b344b3457011d31725089658a84acf 100644
--- a/wp-content/themes/twentyeleven/inc/widgets.php
+++ b/wp-content/themes/twentyeleven/inc/widgets.php
@@ -13,13 +13,15 @@
 class Twenty_Eleven_Ephemera_Widget extends WP_Widget {
 
 	/**
-	 * Constructor
+	 * PHP5 constructor.
 	 *
-	 * @since Twenty Eleven 1.0
-	 **/
-	function Twenty_Eleven_Ephemera_Widget() {
-		$widget_ops = array( 'classname' => 'widget_twentyeleven_ephemera', 'description' => __( 'Use this widget to list your recent Aside, Status, Quote, and Link posts', 'twentyeleven' ) );
-		$this->WP_Widget( 'widget_twentyeleven_ephemera', __( 'Twenty Eleven Ephemera', 'twentyeleven' ), $widget_ops );
+	 * @since Twenty Eleven 2.2
+	 */
+	function __construct() {
+		parent::__construct( 'widget_twentyeleven_ephemera', __( 'Twenty Eleven Ephemera', 'twentyeleven' ), array(
+			'classname'   => 'widget_twentyeleven_ephemera',
+			'description' => __( 'Use this widget to list your recent Aside, Status, Quote, and Link posts', 'twentyeleven' ),
+		) );
 		$this->alt_option_name = 'widget_twentyeleven_ephemera';
 
 		add_action( 'save_post', array( &$this, 'flush_widget_cache' ) );
@@ -27,6 +29,15 @@ class Twenty_Eleven_Ephemera_Widget extends WP_Widget {
 		add_action( 'switch_theme', array( &$this, 'flush_widget_cache' ) );
 	}
 
+	/**
+	 * PHP4 constructor.
+	 *
+	 * @since Twenty Eleven 1.0
+	 */
+	function Twenty_Eleven_Ephemera_Widget() {
+		self::__construct();
+	}
+
 	/**
 	 * Outputs the HTML for this widget.
 	 *
diff --git a/wp-content/themes/twentyeleven/languages/twentyeleven.pot b/wp-content/themes/twentyeleven/languages/twentyeleven.pot
index 37e138bc1f4e0e459946dfe0aec9dec9c84ec444..19cc3638562af5ecb277b178d21b13433cbe81e1 100644
--- a/wp-content/themes/twentyeleven/languages/twentyeleven.pot
+++ b/wp-content/themes/twentyeleven/languages/twentyeleven.pot
@@ -2,9 +2,9 @@
 # This file is distributed under the GNU General Public License v2 or later.
 msgid ""
 msgstr ""
-"Project-Id-Version: Twenty Eleven 2.1\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/twentyeleven\n"
-"POT-Creation-Date: 2015-04-21 12:33:58+00:00\n"
+"Project-Id-Version: Twenty Eleven 2.2\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/twentyeleven\n"
+"POT-Creation-Date: 2015-07-27 19:47:38+00:00\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -266,8 +266,10 @@ msgstr ""
 msgid "Featured"
 msgstr ""
 
+#. #-#-#-#-#  twentyeleven.pot (Twenty Eleven 2.2)  #-#-#-#-#
+#. Author URI of the plugin/theme
 #: footer.php:28
-msgid "http://wordpress.org/"
+msgid "https://wordpress.org/"
 msgstr ""
 
 #: footer.php:28
@@ -492,7 +494,7 @@ msgstr ""
 
 #: inc/theme-options.php:121
 msgid ""
-"<a href=\"http://wordpress.org/support/\" target=\"_blank\">Support Forums</"
+"<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support Forums</"
 "a>"
 msgstr ""
 
@@ -537,35 +539,35 @@ msgid "Layout"
 msgstr ""
 
 #: inc/widgets.php:21
-msgid ""
-"Use this widget to list your recent Aside, Status, Quote, and Link posts"
+msgid "Twenty Eleven Ephemera"
 msgstr ""
 
-#: inc/widgets.php:22
-msgid "Twenty Eleven Ephemera"
+#: inc/widgets.php:23
+msgid ""
+"Use this widget to list your recent Aside, Status, Quote, and Link posts"
 msgstr ""
 
-#: inc/widgets.php:56
+#: inc/widgets.php:67
 msgid "Ephemera"
 msgstr ""
 
-#: inc/widgets.php:95 inc/widgets.php:104
+#: inc/widgets.php:106 inc/widgets.php:115
 msgid "0 <span class=\"reply\">comments &rarr;</span>"
 msgstr ""
 
-#: inc/widgets.php:95 inc/widgets.php:104
+#: inc/widgets.php:106 inc/widgets.php:115
 msgid "1 <span class=\"reply\">comment &rarr;</span>"
 msgstr ""
 
-#: inc/widgets.php:95 inc/widgets.php:104
+#: inc/widgets.php:106 inc/widgets.php:115
 msgid "% <span class=\"reply\">comments &rarr;</span>"
 msgstr ""
 
-#: inc/widgets.php:167
+#: inc/widgets.php:178
 msgid "Title:"
 msgstr ""
 
-#: inc/widgets.php:170
+#: inc/widgets.php:181
 msgid "Number of posts to show:"
 msgstr ""
 
@@ -642,10 +644,6 @@ msgstr ""
 msgid "the WordPress team"
 msgstr ""
 
-#. Author URI of the plugin/theme
-msgid "https://wordpress.org/"
-msgstr ""
-
 #. Template Name of the plugin/theme
 msgid "Showcase Template"
 msgstr ""
diff --git a/wp-content/themes/twentyeleven/readme.txt b/wp-content/themes/twentyeleven/readme.txt
index e80301484332401f522c693f3c29d1d82f87e9a2..9f58b8ac6a3a2ecb11adb5b1e261dbe66c94f1b4 100644
--- a/wp-content/themes/twentyeleven/readme.txt
+++ b/wp-content/themes/twentyeleven/readme.txt
@@ -1,5 +1,104 @@
-= TWENTY ELEVEN =
+=== Twenty Eleven ===
+Contributors: the WordPress team
+Requires at least: WordPress 3.2
+Tested up to: WordPress 4.3-trunk
+Stable tag: 2.2
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Tags: dark, light, white, black, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
 
-* by the WordPress team, http://wordpress.org/
+== Description ==
+The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.
 
-== ABOUT TWENTY ELEVEN ==
\ No newline at end of file
+For more information about Twenty Eleven please go to https://codex.wordpress.org/Twenty_Eleven.
+
+== Installation ==
+
+1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
+2. Type in Twenty Eleven in the search form and press the 'Enter' key in your keyboard.
+3. Click on the 'Activate' button to use your new theme right away.
+4. Go to https://codex.wordpress.org/Twenty_Eleven for a guide to customize this theme.
+5. Navigate to Appearance > Customize in your admin panel.
+
+== Copyright ==
+
+Twenty Eleven WordPress Theme, Copyright 2011-2015 WordPress.org & Automattic.com
+Twenty Eleven is Distributed under the terms of the GNU GPL
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Twenty Eleven Theme bundles the following third-party resources:
+
+HTML5 Shiv v3.7.0, Copyright 2014 Alexander Farkas
+Licenses: MIT/GPL2
+Source: https://github.com/aFarkas/html5shiv
+
+== Changelog ==
+
+= 2.2 =
+* Released: August 18, 2015
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_2.2
+
+= 2.1 =
+* Released: April 23, 2015
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_2.1
+
+= 2.0 =
+* Released: December 18, 2014
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_2.0
+
+= 1.9 =
+* Released: September 4, 2014
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.9
+
+= 1.8 =
+* Released: May 8, 2014
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.8
+
+= 1.7 =
+* Released: October 24, 2013
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.7
+
+= 1.6 =
+* Released: August 1, 2013
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.6
+
+= 1.5 =
+* Released: December 11, 2012
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.5
+
+= 1.4 =
+* Released: June 13, 2012
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.4
+
+= 1.3 =
+* Released: December 12, 2011
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.3
+
+= 1.2 =
+* Released: July 12, 2011
+
+https://codex.wordpress.org/Twenty_Eleven_Theme_Changelog#Version_1.2
+
+= 1.1 =
+* Released: July 4, 2011
+
+Initial release.
diff --git a/wp-content/themes/twentyeleven/rtl.css b/wp-content/themes/twentyeleven/rtl.css
index 376e5437ed0cf970d6f3dc9c46d4aa169bdcd3a2..ae85f5d9ec82927d90a3cf8efccefa6e5838cdfa 100644
--- a/wp-content/themes/twentyeleven/rtl.css
+++ b/wp-content/themes/twentyeleven/rtl.css
@@ -5,7 +5,7 @@ Adding support for language written in a Right To Left (RTL) direction is easy -
 it's just a matter of overwriting all the horizontal positioning attributes
 of your CSS stylesheet in a separate stylesheet file named rtl.css.
 
-http://codex.wordpress.org/Right_to_Left_Language_Support
+https://codex.wordpress.org/Right_to_Left_Language_Support
 
 */
 
diff --git a/wp-content/themes/twentyeleven/style.css b/wp-content/themes/twentyeleven/style.css
index b8ec0bd0cad08e152c322b4ca8e8c6ec7f163d92..6d369e35e257379c995abee5e4260584b22cacbb 100644
--- a/wp-content/themes/twentyeleven/style.css
+++ b/wp-content/themes/twentyeleven/style.css
@@ -4,7 +4,7 @@ Theme URI: https://wordpress.org/themes/twentyeleven/
 Author: the WordPress team
 Author URI: https://wordpress.org/
 Description: The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.
-Version: 2.1
+Version: 2.2
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: dark, light, white, black, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
@@ -511,10 +511,12 @@ a:hover {
 	color: #1982d1;
 	clip: auto !important;
 	font-size: 12px;
+	height: auto;
 	position: absolute;
 	text-decoration: underline;
 	top: 0;
 	left: 7.6%;
+	width: auto;
 }