Skip to content

Commit

Permalink
Fixed issue #5007: Incorrect option shown in advanced settings for Ar…
Browse files Browse the repository at this point in the history
…rays(texts)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_dev@9871 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Mar 8, 2011
1 parent 01ac89c commit 5826ab5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common_functions.php
Expand Up @@ -4110,13 +4110,13 @@ function questionAttributes($returnByName=false)
'sortorder' => 100,
'inputtype' => 'singleselect',
'options' => array(
'X' => $clang->gT('None'),
'X' => $clang->gT('Off'),
'R' => $clang->gT('Rows'),
'C' => $clang->gT('Columns'),
'B' => $clang->gT('Both rows and columns')
),
'default' => 0,
'help' => $clang->gT('Show totals either rows, columns or both rows and columns'),
'default' => 'X',
'help' => $clang->gT('Show totals for either rows, columns or both rows and columns'),
'caption' => $clang->gT('Show totals for')
);

Expand Down

0 comments on commit 5826ab5

Please sign in to comment.