diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 22:54:20 -0700 |
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 22:54:20 -0700 |
| commit | b9bd1681a3b1496c0f1bbe5e6254ab4fd0c9fe30 (patch) | |
| tree | 0ce300329bb2b6ace0e0fd72c94fe5fbb7e4db96 /modules/organize/views/organize_tree.html.php | |
| parent | 952c8856098dcfd9673d344fc71be85b303c8fb1 (diff) | |
Update all code to use helper method html::clean(), html::purify(), ... instead of SafeString directly.
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 387d5977..5b676889 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 ?>"> - <?= SafeString::of($parent->title) ?> + <?= html::clean($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 ?>"> - <?= SafeString::of($peer->title) ?> + <?= html::clean($peer->title) ?> </span> <? if ($peer->id == $album->id): ?> @@ -29,7 +29,7 @@ </span> <span class="gAlbumText" ref="<?= $child->id ?>"> - <?= SafeString::of($child->title) ?> + <?= html::clean($child->title) ?> </span> </li> <? endforeach ?> |
