From: Nileema Date: Tue, 4 Feb 2014 09:11:50 +0000 (+0530) Subject: --HR-235 rowDisplayCount tweak X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7f4f9d0cec40bb8a2a8138a5408eb4be87de75e4;p=civicrm-core.git --HR-235 rowDisplayCount tweak --- diff --git a/CRM/Custom/Import/Form/MapField.php b/CRM/Custom/Import/Form/MapField.php index baf039663b..7fe922d634 100644 --- a/CRM/Custom/Import/Form/MapField.php +++ b/CRM/Custom/Import/Form/MapField.php @@ -34,13 +34,10 @@ class CRM_Custom_Import_Form_MapField extends CRM_Contact_Import_Form_MapField { //showColNames needs to be true to show "Column Names" column $this->assign('showColNames', $skipColumnHeader); $this->assign('columnNames', $columnNames); - $this->assign('rowDisplayCount', 3); /* if we had a column header to skip, stash it for later */ $this->_columnHeaders = $this->_dataValues[0]; } - else { - $this->assign('rowDisplayCount', 2); - } + $this->assign('rowDisplayCount', 2); $this->assign('highlightedFields', $this->_highlightedFields); }