diff --git a/submodules/fbss_comments/fbss_comments_rules/fbss_comments_rules.rules.inc b/submodules/fbss_comments/fbss_comments_rules/fbss_comments_rules.rules.inc
index 2ce6d4a..0c8399b 100644
--- a/submodules/fbss_comments/fbss_comments_rules/fbss_comments_rules.rules.inc
+++ b/submodules/fbss_comments/fbss_comments_rules/fbss_comments_rules.rules.inc
@@ -224,14 +224,40 @@ function fbss_comments_rules_add_action($sid, $message, $uid) {
 }
 
 /**
- * Implements hook_rules_data_type_info().
+ * Implements hook_rules_data_info().
  */
-function fbss_comments_rules_rules_data_type_info() {
+function fbss_comments_rules_rules_data_info() {
   return array(
     'fbss_comment' => array(
       'label' => t('Statuses Comment'),
       'wrapper class' => 'FBSSCommentRulesDataWrapper',
       'wrap' => TRUE,
+      'parent' => 'statuses',
+      'property info' => _rules_fbss_comment_info(),
+    ),
+  );
+}
+
+/**
+ * Defines property info for fbss_comment.
+ */
+function _rules_fbss_comment_info() {
+  return array(
+    'cid' => array(
+      'type' => 'integer',
+      'label' => t('The Comment ID.'),
+    ),
+    'comment' => array(
+      'type' => 'text',
+      'label' => ('The comment text.'),
+    ),
+    'uid' => array(
+      'type' => 'integer',
+      'label' => t('User who posted the status comment.'),
+    ),
+    'sid' => array(
+      'type' => 'integer',
+      'label' => t('Statuses ID'),
     ),
   );
 }
diff --git a/submodules/fbss_rules/fbss_rules.rules.inc b/submodules/fbss_rules/fbss_rules.rules.inc
index db54713..4c6ec7f 100644
--- a/submodules/fbss_rules/fbss_rules.rules.inc
+++ b/submodules/fbss_rules/fbss_rules.rules.inc
@@ -190,7 +190,7 @@ function fbss_rules_rules_action_info() {
   return array(
     'fbss_rules_load_action' => array(
       'label' => t('Load a status'),
-      'new variables' => array(
+      'provides' => array(
         'status_loaded' => array(
           'type' => 'statuses',
           'label' => t('Loaded status'),
@@ -299,9 +299,9 @@ function fbss_rules_add_action($sender, $recipient, $recipient_type, $message) {
 }
 
 /**
- * Implements hook_rules_data_type_info().
+ * Implements hook_rules_data_info().
  */
-function fbss_rules_rules_data_type_info() {
+function fbss_rules_rules_data_info() {
   return array(
     'statuses' => array(
       'label' => t('Statuses'),
