From 2d9b8fbfde3383f26cb14981cdff42c9ec35adc0 Mon Sep 17 00:00:00 2001
From: Patrick Dawkins <pjcdawkins@googlemail.com>
Date: Fri, 3 Feb 2012 11:04:34 +0000
Subject: [PATCH] Fixed account not shown on edit page.

---
 election-candidate.pages.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/election-candidate.pages.inc b/election-candidate.pages.inc
index 1392041..701f554 100644
--- a/election-candidate.pages.inc
+++ b/election-candidate.pages.inc
@@ -479,7 +479,7 @@ function election_candidate_edit_form($form, $form_state, stdClass $election, st
   $form['user_info']['current_user'] = array(
     '#title' => t('Associated user account'),
     '#type' => 'item',
-    '#default_value' => empty($account)? NULL : $account->name,
+    '#default_value' => empty($candidate_account)? NULL : $candidate_account->name,
     '#weight' => 1,
   );
   if (empty($account)) {
@@ -488,12 +488,12 @@ function election_candidate_edit_form($form, $form_state, stdClass $election, st
   else {
     $form['user_info']['current_user']['#markup'] = theme(
       'username',
-      array('account' => $account, 'link_options' => array('target' => '_blank'))
+      array('account' => $candidate_account, 'link_options' => array('target' => '_blank'))
     );
     $form['user_info']['current_user']['#description'] = t('The account that submitted the nomination.');
   }
 
-  $post_ids = election_candidate_get_available_posts($election, NULL, $candidate_account);
+  $post_ids = election_candidate_get_available_posts($election, NULL, FALSE);
   $available_posts = election_post_load_multiple($post_ids);
   $post_options = array();
   foreach ($available_posts as $post) {
-- 
GitLab