diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-25 13:45:00 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-25 13:45:00 +0000 |
commit | f9693e5815f751a19b1d2321a9dbb330c21ddaa2 (patch) | |
tree | 447b253affea9d85f0c507c3f618ad259fa81804 | |
parent | 780169772dd8d0bea5def1f7e080eba3b32fc036 (diff) | |
download | brdo-f9693e5815f751a19b1d2321a9dbb330c21ddaa2.tar.gz brdo-f9693e5815f751a19b1d2321a9dbb330c21ddaa2.tar.bz2 |
#413060 by pp: Fix typo preventing contact categories from appearing in table.
-rw-r--r-- | modules/contact/contact.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.admin.inc b/modules/contact/contact.admin.inc index a9671c924..6fa4404f0 100644 --- a/modules/contact/contact.admin.inc +++ b/modules/contact/contact.admin.inc @@ -19,7 +19,7 @@ function contact_admin_categories() { // Loop through the categories and add them to the table. foreach ($result as $record) { - $row[] = array( + $rows[] = array( $record->category, $record->recipients, ($record->selected ? t('Yes') : t('No')), |