diff --git a/API.txt b/API.txt
index f06b606..505289d 100644
--- a/API.txt
+++ b/API.txt
@@ -163,7 +163,6 @@ Current meta tag weights, grouped by topic:
     -137: og:url
     -136: revist-after
     -135: standout
-    -134: syndication-source
-    -133: original-source
+    -134: original-source
   Robots: -129 to -120
     -129: robots
diff --git a/README.txt b/README.txt
index e379f95..43c58a8 100644
--- a/README.txt
+++ b/README.txt
@@ -80,8 +80,7 @@ Installing Nodewords (first time installation)
  4. Enable other modules which provide meta tags. The following are included:
     - Nodewords basic meta tags: for "abstract", "canonical", "copyright",
       "description", "keywords", "logo", "original-source", "revisit-after",
-      "robots", "standout" and "syndication-source" meta tags, and the "title"
-      HTML tag.
+      "robots", and "standout" meta tags, and the "title" HTML tag.
     - Nodewords extra meta tags: for Dublin Core, "geo.placename",
       "geo.position", "geo.region", "icbm" and "shorturl" meta tags.
     - Nodewords Open Graph meta tags: for the Open Graph Protocol meta tags,
diff --git a/nodewords_basic/nodewords_basic.info b/nodewords_basic/nodewords_basic.info
index 62fffc1..cd5f121 100644
--- a/nodewords_basic/nodewords_basic.info
+++ b/nodewords_basic/nodewords_basic.info
@@ -1,5 +1,5 @@
 name = "Nodewords basic meta tags"
-description = "Add the 'abstract', 'canonical', 'copyright', 'description', 'keywords', 'logo', 'original-source', 'revisit-after', 'robots', 'standout' and 'syndication-source' meta tags, and the 'title' HTML tag."
+description = "Add the 'abstract', 'canonical', 'copyright', 'description', 'keywords', 'logo', 'original-source', 'revisit-after', 'robots' and 'standout' meta tags, and the 'title' HTML tag."
 dependencies[] = nodewords
 package = Meta tags
 core = 6.x
\ No newline at end of file
diff --git a/nodewords_basic/nodewords_basic.install b/nodewords_basic/nodewords_basic.install
index 493882e..1994847 100644
--- a/nodewords_basic/nodewords_basic.install
+++ b/nodewords_basic/nodewords_basic.install
@@ -56,3 +56,16 @@ function nodewords_basic_update_6114() {
 
   return $ret;
 }
+
+/**
+ * Remove the 'syndication-source' meta tag that was deprecated.
+ */
+function nodewords_basic_update_6115() {
+  if (db_table_exists('nodewords')) {
+    $metatags = array(
+      'syndication-source',
+    );
+
+    db_query("DELETE FROM {nodewords} WHERE name IN (" . db_placeholders($metatags, 'varchar') . ")", $metatags);
+  }
+}
diff --git a/nodewords_basic/nodewords_basic.module b/nodewords_basic/nodewords_basic.module
index 5d86e9c..eee861f 100644
--- a/nodewords_basic/nodewords_basic.module
+++ b/nodewords_basic/nodewords_basic.module
@@ -148,22 +148,6 @@ function nodewords_basic_nodewords_tags_info() {
       ),
       'weight' => array('standout' => -135),
     ),
-    'syndication-source' => array(
-      'callback' => 'nodewords_basic_syndication_source',
-      'context' => array(
-        'allowed' => array(
-          NODEWORDS_TYPE_NODE,
-        ),
-      ),
-      'label' => t('Syndication Source'),
-      'permission' => 'edit meta tag SYNDICATION-SOURCE',
-      'templates' => array(
-        'head' => array(
-          'syndication-source' => NODEWORDS_LINK_REL,
-        ),
-      ),
-      'weight' => array('syndication-source' => -134),
-    ),
     'original-source' => array(
       'callback' => 'nodewords_basic_original_source',
       'context' => array(
@@ -179,7 +163,7 @@ function nodewords_basic_nodewords_tags_info() {
           'original-source' => NODEWORDS_LINK_REL,
         ),
       ),
-      'weight' => array('original-source' => -133),
+      'weight' => array('original-source' => -134),
     ),
     'robots' => array(
       'callback' => 'nodewords_basic_robots',
@@ -817,39 +801,6 @@ function nodewords_basic_standout_prepare(&$tags, $content, $options) {
 /**
  * Set the form fields used to implement the options for the meta tag.
  */
-function nodewords_basic_syndication_source_form(&$form, $content, $options) {
-  $form['syndication-source'] = array(
-    '#tree' => TRUE,
-    '#weight' => -134,
-  );
-
-  $form['syndication-source']['value'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Syndication Source URL'),
-    '#description' => t('Used to indicate the original source of the content, typically used for aggregated content, and may be a bare if the exact. If the full URL is not known it is acceptable to use a partial URL or just the domain name. Has a maximum limit of %count characters.<br />Note: if this field is to be used it is recommended to hide the Canonical URL field.', array('%count' => variable_get('nodewords_max_size', 350))),
-    '#default_value' => empty($content['value']) ? '' : $content['value'],
-    '#element_validate' => array('nodewords_basic_syndication_source_form_validate'),
-    '#size' => 60,
-    '#maxlength' => variable_get('nodewords_max_size', 350),
-  );
-}
-
-function nodewords_basic_syndication_source_form_validate($element, &$form_state) {
-  if (!empty($element['#value']) && !valid_url($element['#value'], TRUE)) {
-    form_error($element, t('The Syndication Source URL must be a valid URL starting with "http://" or "https://".'));
-  }
-}
-
-function nodewords_basic_syndication_source_prepare(&$tags, $content, $options) {
-  // There is no default allowed for this, due to search engine policies.
-  if (!empty($content['value'])) {
-    $tags['syndication-source'] = $content['value'];
-  }
-}
-
-/**
- * Set the form fields used to implement the options for the meta tag.
- */
 function nodewords_basic_original_source_form(&$form, $content, $options) {
   $form['original-source'] = array(
     '#tree' => TRUE,
diff --git a/nodewords_og/nodewords_og.module b/nodewords_og/nodewords_og.module
index 320dfd7..266fee5 100644
--- a/nodewords_og/nodewords_og.module
+++ b/nodewords_og/nodewords_og.module
@@ -74,7 +74,7 @@ function nodewords_og_get_tags() {
       'weight' => array('fb:app_id' => -208),
     ),
     'fb:admins' => array(
-      'description' => t('A comma-separated list of either Facebook user IDs that administer this page. Most sites will only need to set this via the global "Default values".'),
+      'description' => t('A comma-separated list of Facebook user IDs of people who are considered administrators or moderators of this page. Most sites will only need to set this via the global "Default values".'),
       'label' => t('Facebook: Admins'),
       'weight' => array('fb:app_id' => -207),
     ),
