Skip to content

Commit

Permalink
Fixed issue #9015: Wrong quote escaping for translated text in file u…
Browse files Browse the repository at this point in the history
…pload processing
  • Loading branch information
c-schmitz committed May 2, 2014
1 parent 1f6cab1 commit 87f47bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/UploaderController.php
Expand Up @@ -365,7 +365,7 @@ function run($actionID)
<button id="button1" class="button upload-button" type="button" >'.$clang->gT("Select file").'</button>
</div>
<p class="uploadmsg">'.sprintf($clang->gT("You can upload %s under %s KB each.",'js'),$qidattributes['allowed_filetypes'],$qidattributes['max_filesize']).'</p>
<p class="uploadmsg">'.sprintf($clang->gT("You can upload %s under %s KB each."),$qidattributes['allowed_filetypes'],$qidattributes['max_filesize']).'</p>
<div class="uploadstatus" id="uploadstatus"></div>
<!-- The list of uploaded files -->
Expand Down

0 comments on commit 87f47bc

Please sign in to comment.