From af861fba90d2a1982bb5b04d5c348f540522f93a Mon Sep 17 00:00:00 2001 From: lorilee Date: Wed, 9 Jun 2010 20:26:41 -0400 Subject: [PATCH] Updated hidden structure/data field name, Modified label text --- libraries/export/csv.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libraries/export/csv.php b/libraries/export/csv.php index e3d78f2b8..dfe9885ad 100644 --- a/libraries/export/csv.php +++ b/libraries/export/csv.php @@ -18,14 +18,14 @@ if (isset($plugin_list)) { 'extension' => 'csv', 'mime_type' => 'text/comma-separated-values', 'options' => array( - array('type' => 'text', 'name' => 'separator', 'text' => __('Columns terminated by')), - array('type' => 'text', 'name' => 'enclosed', 'text' => __('Columns enclosed by')), - array('type' => 'text', 'name' => 'escaped', 'text' => __('Columns escaped by')), - array('type' => 'text', 'name' => 'terminated', 'text' => __('Lines terminated by')), - array('type' => 'text', 'name' => 'null', 'text' => __('Replace NULL by')), - array('type' => 'bool', 'name' => 'removeCRLF', 'text' => __('Remove CRLF characters within columns')), + array('type' => 'text', 'name' => 'separator', 'text' => __('Columns terminated with:')), + array('type' => 'text', 'name' => 'enclosed', 'text' => __('Columns enclosed with:')), + array('type' => 'text', 'name' => 'escaped', 'text' => __('Columns escaped with:')), + array('type' => 'text', 'name' => 'terminated', 'text' => __('Lines terminated with:')), + array('type' => 'text', 'name' => 'null', 'text' => __('Replace NULL with:')), + array('type' => 'bool', 'name' => 'removeCRLF', 'text' => __('Remove carriage return/line field characters within columns')), array('type' => 'bool', 'name' => 'columns', 'text' => __('Put columns names in the first row')), - array('type' => 'hidden', 'name' => 'data'), + array('type' => 'hidden', 'name' => 'structure_or_data'), ), 'options_text' => __('Options'), );