diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 14:38:47 -0700 |
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 14:38:47 -0700 |
| commit | c4d5ecde66c7bffde2259b9815c050e6a4d8f333 (patch) | |
| tree | 4c4e0b68fc0be4ce6be905b0ab945d07a368648d /modules/organize/views/organize_tree.html.php | |
| parent | f327b4ad38923d40fcd6540467604cb0f24cd8bf (diff) | |
L10n fixes for the admin_languages page, and JS/XSS cleanup of the organize views.
Diffstat (limited to 'modules/organize/views/organize_tree.html.php')
| -rw-r--r-- | modules/organize/views/organize_tree.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/organize/views/organize_tree.html.php b/modules/organize/views/organize_tree.html.php index 36f900ac..387d5977 100644 --- a/modules/organize/views/organize_tree.html.php +++ b/modules/organize/views/organize_tree.html.php @@ -5,7 +5,7 @@ <span class="ui-icon ui-icon-minus"> </span> <span class="gAlbumText" ref="<?= $parent->id ?>"> - <?= p::clean($parent->title) ?> + <?= SafeString::of($parent->title) ?> </span> <ul class="ui-icon-plus"> <? endforeach ?> @@ -17,7 +17,7 @@ </span> <span class="gAlbumText <?= $peer->id == $album->id ? "selected" : "" ?>" ref="<?= $peer->id ?>"> - <?= p::clean($peer->title) ?> + <?= SafeString::of($peer->title) ?> </span> <? if ($peer->id == $album->id): ?> @@ -29,7 +29,7 @@ </span> <span class="gAlbumText" ref="<?= $child->id ?>"> - <?= p::clean($child->title) ?> + <?= SafeString::of($child->title) ?> </span> </li> <? endforeach ?> |
