Wysiwyg 5.x-3.x, xxxx-xx-xx
---------------------------
+#490914 by sun: Fixed JS/CSS not updated after update with caching enabled.
#522440 by authentictech, sun: UX: Fixed user interface for Wysiwyg profiles.
#507608 by jfh: Added WYMeditor instance API methods.
#496744 by TwoD: Fixed FCKeditor: "Apply source formatting" not working.
return $ret;
}
+/**
+ * Clear JS/CSS caches to ensure that clients load fresh copies.
+ */
+function wysiwyg_update_5200() {
+ $ret = array();
+ drupal_clear_css_cache();
+
+ // Rebuild the menu to remove old admin/settings/wysiwyg/profile item.
+ menu_rebuild();
+
+ // Flush content caches.
+ cache_clear_all();
+
+ $ret[] = array(
+ 'success' => TRUE,
+ 'query' => 'Caches have been flushed.',
+ );
+ return $ret;
+}
+