Skip to content

Commit

Permalink
Fixed issue : double quote are removed for group title when editing
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Jan 26, 2014
1 parent 2de5433 commit ea6e5c1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -14,7 +14,7 @@

<div id='editgrp_<?php echo $i;?>'>
<ul><li><label for='group_name_<?php echo $aGroupData[$i]['language']; ?>'><?php $clang->eT("Title"); ?>:</label>
<input type='text' maxlength='100' size='80' name='group_name_<?php echo $aGroupData[$i]['language']; ?>' id='group_name_<?php echo $aGroupData[$i]['language']; ?>' value="<?php echo $aGroupData[$i]['group_name']; ?>" />
<input type='text' maxlength='100' size='80' name='group_name_<?php echo $aGroupData[$i]['language']; ?>' id='group_name_<?php echo $aGroupData[$i]['language']; ?>' value="<?php echo htmlspecialchars($aGroupData[$i]['group_name']); ?>" />
</li>
<li><label for='description_<?php echo $aGroupData[$i]['language']; ?>'><?php $clang->eT("Description:"); ?></label>
<div class="htmleditor">
Expand Down

0 comments on commit ea6e5c1

Please sign in to comment.