diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt
index 1f722441c82cde1ae1a13e89fcc1f386bd440d45..da973bd6690caa88063d526b12cc1733cd4d9704 100644
--- a/profiles/wcm_base/CHANGELOG.txt
+++ b/profiles/wcm_base/CHANGELOG.txt
@@ -1,3 +1,7 @@
+WCM Base 7.x-1.11-rc2, 2019-01-24
+---------------------------------
+- WCM Base: Updated Panopoly to 1.60 per SA-CONTRIB-2019-004.
+
 WCM Base 7.x-1.11-rc1, 2019-01-23
 ---------------------------------
 - WCM Base:
diff --git a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info
index bca184fdbea4ac734b1899778ca66206432ff029..9fa32d0e4bae909cbdbab0292a9e4a34a3ec4777 100644
--- a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info
+++ b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.info
@@ -5,8 +5,8 @@ package = Panels
 dependencies[] = ctools
 dependencies[] = page_manager
 dependencies[] = panels
-; Information added by Drupal.org packaging script on 2018-08-27
-version = "7.x-2.3"
+; Information added by Drupal.org packaging script on 2019-01-23
+version = "7.x-2.4"
 core = "7.x"
 project = "panels_breadcrumbs"
-datestamp = "1535382184"
+datestamp = "1548270183"
diff --git a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module
index 04939dc00289d661287a640735fea69f96ea6216..92d7d458e1905994b5561270481c48a2310418d5 100644
--- a/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module
+++ b/profiles/wcm_base/modules/contrib/panels_breadcrumbs/panels_breadcrumbs.module
@@ -219,7 +219,10 @@ function panels_breadcrumbs_build_breadcrumb($conf, $contexts, $override = FALSE
     foreach ($breadcrumbs_info as $crumb) {
       if (isset($crumb['href']) && $crumb['href'] == '<none>') {
         $crumb['localized_options'] += array('attributes' => array(), 'html' => TRUE);
-        $breadcrumbs[] = '<span ' . drupal_attributes($crumb['localized_options']['attributes']) . '>' . ($crumb['localized_options']['html'] ? $crumb['title'] : check_plain($crumb['title'])) . '</span>';
+        $attributes = drupal_attributes($crumb['localized_options']['attributes']);
+        $content = $crumb['localized_options']['html'] ? filter_xss_admin($crumb['title']) : check_plain($crumb['title']);
+
+        $breadcrumbs[] = sprintf('<span %s>%s</span>', $attributes, $content);
       }
       else {
         $breadcrumbs[] = l($crumb['title'], $crumb['href'], $crumb['localized_options']);
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
index 785185a142da2b139ef90aadcbabdbbba80c3fb7..cf8e32bfafaae5c8604931f65d37e0db0fb8a86a 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
index 9dbcdc61d7d623f83d548a49932142fb5e740f67..b1dca7685910c61db51301209fb0514a2d331c66 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_admin/panopoly_admin.info
@@ -37,8 +37,8 @@ features[page_manager_pages][] = panopoly_admin_layout_library
 features[page_manager_pages][] = panopoly_admin_page_library
 features[page_manager_pages][] = panopoly_admin_pane_library
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_admin"
-datestamp = "1547743824"
+datestamp = "1548297491"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
index fc1e6dd50917c909a27309a31a17e245051516ea..8098f6d7f8bacc1733351dfd99dfbfa10426da6f 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_core/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- Update panels_breadcrumbs for SA-CONTRIB-2019-004.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
index 30650a11e97e2fefc170e058ea4ca6d21110a65f..be0d4cb56e2b5b45df761dc9a95c9bd0cb2aa285 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.info
@@ -82,8 +82,8 @@ features_exclude[variable][panelizer_taxonomy_term:panopoly_categories_allowed_t
 features_exclude[variable][panelizer_defaults_taxonomy_term_panopoly_categories] = panelizer_defaults_taxonomy_term_panopoly_categories
 features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_core"
-datestamp = "1547743843"
+datestamp = "1548297503"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make
index 27a1e99964b71b2f4cfef544e087f3438c94d4d4..8ca2c73c6363ca31b07d639772b5aacd9c5a7b58 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make
+++ b/profiles/wcm_base/modules/panopoly/panopoly_core/panopoly_core.make
@@ -14,7 +14,7 @@ projects[panels][subdir] = contrib
 projects[panels][patch][1570120] = https://www.drupal.org/files/issues/move-image-1570120-31.patch
 projects[panels][patch][2897658] = https://www.drupal.org/files/issues/panels-menu-block-ipe-2897658-3.patch
 
-projects[panels_breadcrumbs][version] = 2.3
+projects[panels_breadcrumbs][version] = 2.4
 projects[panels_breadcrumbs][subdir] = contrib
 
 projects[panelizer][version] = 3.4
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
index bb5b8149f572142da3f189da167c24d504ffb224..fb2cc5c4c387c5c3f230b455815041d160995285 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
index 38603858011c3e04f0c886b49ab2d6fe41755282..08c2c4a913d0ece3e9918c2ab113eb254fe2167e 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_magic/panopoly_magic.info
@@ -15,8 +15,8 @@ stylesheets[all][] = css/panopoly-modal.css
 features[features_api][] = api:2
 files[] = plugins/views/panopoly_magic_plugin_display_panel_pane.inc
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_magic"
-datestamp = "1547743904"
+datestamp = "1548297538"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
index c64802f782677ea64319ac71e4c8db6f6bdf1590..7561568496056eddfe307eaa74496d684c492824 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
index 9dccd0e60b5d6056ccf26717cbeae764d008a090..63dc06445d01735153f362e59967cac2b84df36c 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_pages/panopoly_pages.info
@@ -81,8 +81,8 @@ features_exclude[variable][pathauto_node_panopoly_landing_page_pattern] = pathau
 features_exclude[variable][pathauto_node_panopoly_page_pattern] = pathauto_node_panopoly_page_pattern
 features_exclude[variable][pathauto_taxonomy_term_panopoly_categories_pattern] = pathauto_taxonomy_term_panopoly_categories_pattern
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_pages"
-datestamp = "1547743926"
+datestamp = "1548297550"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
index d381b76dfa77fa375af8009feb75f0b4cf718a7c..31f7790feaf21d7141b95d7bb24823f0fcfe4291 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_search/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
index 7b3b8d7bd3e8a49cec5d29b8e65fdc4139417066..022e582a6ecd9113785b1d39a7f0e8d4ae20ddd2 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_search/panopoly_search.info
@@ -54,8 +54,8 @@ features[variable][] = search_cron_limit
 features[views_view][] = panopoly_database_search
 features[views_view][] = panopoly_search
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_search"
-datestamp = "1547743955"
+datestamp = "1548297561"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
index 262b284246fc5dcf8540148dcdc88dda2060a49c..0cbdc461bc5db4c096734fbc75d0ef3f148ce3fe 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_test/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
index 6a987eeefb67ad4ea74119324e9bc361a31a67af..8fb6f8c45d9ba8c2c4cb828f9c48482099db53ea 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_test/panopoly_test.info
@@ -99,8 +99,8 @@ features_exclude[dependencies][panopoly_pages] = panopoly_pages
 features_exclude[dependencies][panelizer] = panelizer
 hidden = 1
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_test"
-datestamp = "1547743980"
+datestamp = "1548297571"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
index 124a1aaef2f586cadb363a33267c54e2693751f3..2f6c9d32aa8dc805be0ab6aab8f84c9f86eb5272 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
index ff7871a91e682cfb01e1146ab71c6ad507fefad0..e53cc51d350075b69a20ced2953c7058882b8f9e 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_theme/panopoly_theme.info
@@ -11,8 +11,8 @@ stylesheets[all][] = css/panopoly-accordian.css
 stylesheets[all][] = css/panopoly-layouts.css
 features[features_api][] = api:2
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_theme"
-datestamp = "1547744004"
+datestamp = "1548297583"
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
index f2bd5d6b52c32471da67c97ba764cbad541cb159..0cf51de82cfe18fe12afeabb324eeaafcfd5f8a0 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
+++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/CHANGELOG.txt
@@ -1,3 +1,7 @@
+7.x-1.60, 2019-01-23
+-------------------
+- No changes since last release.
+
 7.x-1.59, 2019-01-17
 -------------------
 - No changes since last release.
diff --git a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
index fabc9d5ec44b3aa256bf38247d4788835aa92321..afd6023d89c247631b6e314385db098e14369759 100644
--- a/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
+++ b/profiles/wcm_base/modules/panopoly/panopoly_widgets/panopoly_widgets.info
@@ -125,8 +125,8 @@ features[linkit_profiles][] = content_fields
 features[views_view][] = panopoly_widgets_general_content
 features_exclude[dependencies][linkit] = linkit
 
-; Information added by Drupal.org packaging script on 2019-01-17
-version = "7.x-1.59"
+; Information added by Drupal.org packaging script on 2019-01-24
+version = "7.x-1.60"
 core = "7.x"
 project = "panopoly_widgets"
-datestamp = "1547744042"
+datestamp = "1548297607"
diff --git a/profiles/wcm_base/wcm_base.make b/profiles/wcm_base/wcm_base.make
index 13343b3b534e0472085751e46585eb11d6b2b497..e722e05cc0618f1d19737766497bdfab0fd6d883 100644
--- a/profiles/wcm_base/wcm_base.make
+++ b/profiles/wcm_base/wcm_base.make
@@ -485,31 +485,31 @@ libraries[ocio_modernizr][download][branch] = 7.x-1.x
 
 ; The Panopoly Foundation
 
-projects[panopoly_core][version] = 1.59
+projects[panopoly_core][version] = 1.60
 projects[panopoly_core][subdir] = panopoly
 
-projects[panopoly_theme][version] = 1.59
+projects[panopoly_theme][version] = 1.60
 projects[panopoly_theme][subdir] = panopoly
 
-projects[panopoly_magic][version] = 1.59
+projects[panopoly_magic][version] = 1.60
 projects[panopoly_magic][subdir] = panopoly
 
-projects[panopoly_widgets][version] = 1.59
+projects[panopoly_widgets][version] = 1.60
 projects[panopoly_widgets][subdir] = panopoly
 
-projects[panopoly_admin][version] = 1.59
+projects[panopoly_admin][version] = 1.60
 projects[panopoly_admin][subdir] = panopoly
 
 
 ; The Panopoly Toolset
 
-projects[panopoly_pages][version] = 1.59
+projects[panopoly_pages][version] = 1.60
 projects[panopoly_pages][subdir] = panopoly
 
-projects[panopoly_search][version] = 1.59
+projects[panopoly_search][version] = 1.60
 projects[panopoly_search][subdir] = panopoly
 
 ; For running the automated tests.
 
-projects[panopoly_test][version] = 1.59
+projects[panopoly_test][version] = 1.60
 projects[panopoly_test][subdir] = panopoly