From ff2ca4ebbf54456587635b7e0daacf7785b66772 Mon Sep 17 00:00:00 2001
From: Matthew Radcliffe <mradcliffe@kosada.com>
Date: Wed, 16 Mar 2011 16:54:41 -0400
Subject: [PATCH] * fix class key value in theme_table rows. Needs to be an array.

---
 oauth_common.admin.inc |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/oauth_common.admin.inc b/oauth_common.admin.inc
index cea7293..2550595 100644
--- a/oauth_common.admin.inc
+++ b/oauth_common.admin.inc
@@ -101,18 +101,18 @@ function oauth_common_list_context($js = NULL) {
       'data' => array(
         'title' => array(
           'data' => check_plain($context->title),
-          'class' => 'oauth-common-contexts-title',
+          'class' => array('oauth-common-contexts-title'),
         ),
         'storage' => array(
           'data' => ($context->export_type == EXPORT_IN_CODE) ? t('In code') : t('In database'),
-          'class' => 'oauth-common-contexts-storage',
+          'class' => array('oauth-common-contexts-storage'),
         ),
         'operations' => array(
           'data' => theme('links', array('links' => $operations)),
-          'class' => 'oauth-common-contexts-operations',
+          'class' => array('oauth-common-contexts-operations'),
         ),
       ),
-      'class' => 'oauth-common-contexts-' . $context->name . (!empty($context->disabled) ? ' oauth-common-contexts-disabled' : ''),
+      'class' => array('oauth-common-contexts-' . $context->name . (!empty($context->disabled) ? ' oauth-common-contexts-disabled' : '')),
     );
   }
 
-- 
1.7.4.msysgit.0

