Skip to content

Commit

Permalink
Dev Small display fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Oct 12, 2017
1 parent 8239d8d commit a6a30f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions application/views/admin/global_settings/_language.php
Expand Up @@ -32,6 +32,7 @@
<table id='languageSelection'>
<tr>
<td>
<?php eT("Visible:"); ?><br>
<select class="form-control" style='min-width:220px;' size='10' id='includedLanguages' name='includedLanguages' multiple='multiple'><?php
foreach ($restrictToLanguages as $sLanguageCode) {?>
<option value='<?php echo $sLanguageCode; ?>'><?php echo $allLanguages[$sLanguageCode]['description']; ?></option>
Expand All @@ -52,6 +53,7 @@
</button>
</td>
<td >
<?php eT("Hidden:"); ?><br>
<select class="form-control" size='10' style='min-width:220px;' id='excludedLanguages' name='excludedLanguages' multiple='multiple'>
<?php foreach ($excludedLanguages as $sLanguageCode) {
?><option value='<?php echo $sLanguageCode; ?>'><?php echo $allLanguages[$sLanguageCode]['description']; ?></option><?php
Expand Down

1 comment on commit a6a30f8

@Shnoulle
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With label ? ;)

Please sign in to comment.