=== modified file 'bzr_changelog'
--- bzr_changelog	2011-01-20 11:37:24 +0000
+++ bzr_changelog	2011-01-20 12:53:54 +0000
@@ -1,3 +1,9 @@
+nodewords (DRUPAL-6--1-BZR-3)
+
+  * Apply missing patch in previous commit.
+
+ -- Sammy Spets <sammys@synerger.com>  Thu, 20 Jan 2011 19:53:54 +0700
+
 nodewords (DRUPAL-6--1-BZR-2)
 
   * Support Open Graph Protocol meta tags [d.o#803512/14].

=== modified file 'nodewords.module'
--- nodewords.module	2011-01-20 10:35:34 +0000
+++ nodewords.module	2011-01-20 13:32:13 +0000
@@ -40,6 +40,7 @@
 define('NODEWORDS_HTTP_EQUIV', 1);
 define('NODEWORDS_LINK_REL', 2);
 define('NODEWORDS_LINK_REV', 3);
+define('NODEWORDS_META_PROPERTY', 4);
 
 /**
  * Implements hook_node_type().
@@ -884,7 +885,13 @@
       continue;
     }
 
-    $parts = explode(':', $name);
+    // Check if it's a property meta tag
+    $bool = (
+      $output_type == 'head' &&
+      isset($tags_info[$name]['templates']['head'][$name]) &&
+      $tags_info[$name]['templates']['head'][$name] == NODEWORDS_META_PROPERTY
+    );
+    $parts = ($bool ? array($name, $name) : explode(':', $name));
     $template = '';
 
     if (!isset($parts[1])) {
@@ -922,6 +929,10 @@
           $template = '<link rev="%name" href="%content"%attributes />';
           break;
 
+        case NODEWORDS_META_PROPERTY:
+          $template = '<meta property="%name" content="%content"%attributes />';
+          break;
+          
         default:
           if (!is_string($template)) {
             $template = '';

