Skip to content

Commit

Permalink
- Fixed bug #017573: (tc-458) utf8 names are no rendered properly in …
Browse files Browse the repository at this point in the history
…admin2 interface
  • Loading branch information
Lukasz Serwatka committed Nov 2, 2010
1 parent a2e5c95 commit 2b3cb44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -5,6 +5,7 @@
- Change use of old templateInit() api and use class based api introduced in 4.3 instead
- Updated jQuery to 1.4.3
- Fixed bug #017355: admin2: js error prevents context menu in children items table to pop up
- Fixed bug #017573: (tc-458) utf8 names are no rendered properly in admin2 interface

# v1.2.0rc1
- Fixed bug #017223: Make LoadFromCDN disabled by default
Expand Down
2 changes: 1 addition & 1 deletion classes/ezjscajaxcontent.php
Expand Up @@ -227,7 +227,7 @@ public static function simplify( $obj, $params = array() )

$ret = array();
$attrtibuteArray = array();
$ret['name'] = htmlentities( $contentObject->attribute( 'name' ), ENT_QUOTES );
$ret['name'] = htmlentities( $contentObject->attribute( 'name' ), ENT_QUOTES, "UTF-8" );
$ret['contentobject_id'] = $ret['id'] = (int) $contentObject->attribute( 'id' );
$ret['contentobject_remote_id'] = $contentObject->attribute( 'remote_id' );
$ret['main_node_id'] = (int)$contentObject->attribute( 'main_node_id' );
Expand Down

0 comments on commit 2b3cb44

Please sign in to comment.