Skip to content

Commit

Permalink
Remove double double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmert committed Mar 7, 2017
1 parent 0ade1c8 commit 6758fd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ function jSelectCategory_" . $this->id . "(id, title, object) {
// Note: class='required' for client side validation
$class = $this->required ? ' class="required modal-value"' : '';

$html .= '<input type="hidden" id="' . $this->id . '_id"' . $class . ' data-required="' . (int) $this->required . '" name="' . $this->name . '"'
$html .= '<input type="hidden" id="' . $this->id . '_id"' . $class . ' data-required="' . (int) $this->required . '" name="' . $this->name
. '" data-text="' . htmlspecialchars(JText::_('COM_CATEGORIES_SELECT_A_CATEGORY', true), ENT_COMPAT, 'UTF-8') . '" value="' . $value . '" />';

return $html;
Expand Down

0 comments on commit 6758fd7

Please sign in to comment.