diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 01:02:51 -0700 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 01:02:51 -0700 |
| commit | 9369ccab7fb3413d63e218cec81b4cf43442fd98 (patch) | |
| tree | 22066e2335c6aa2d81fadc56fbdbea8e7694069c /modules/organize/views/organize_album.html.php | |
| parent | a049de28ace48a3970371caf24d7c389d8d93cd7 (diff) | |
Run all variables that come from user-entered data through p::clean()
Diffstat (limited to 'modules/organize/views/organize_album.html.php')
| -rw-r--r-- | modules/organize/views/organize_album.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/organize/views/organize_album.html.php b/modules/organize/views/organize_album.html.php index 9c4d042a..ae2d5d51 100644 --- a/modules/organize/views/organize_album.html.php +++ b/modules/organize/views/organize_album.html.php @@ -7,7 +7,7 @@ <div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>" class="<?= $selected ? "gBranchSelected" : "" ?> gBranchText"> - <?= $album->title ?> + <?= p::clean($album->title) ?> </div> <div id="gOrganizeChildren-<?= $album->id ?>" class="<?= $album_icon == "ui-icon-plus" ? "gBranchCollapsed" : "" ?>"> |
