diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-08 19:02:58 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-08 19:03:26 -0700 |
commit | 3191f0f18b606a93bb6ae9e05a95cc505660ba96 (patch) | |
tree | 3d01ac8ea516d797f25e109762fbf57fec822c29 /modules | |
parent | 4998113484ea91fcdeb1368b638080e39b29837e (diff) |
Fix up a title that I overlooked in 581d9a58db6a18a2597ee5487e57716f367c884b
Diffstat (limited to 'modules')
-rw-r--r-- | modules/organize/controllers/organize.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/organize/controllers/organize.php b/modules/organize/controllers/organize.php index 145c3283..b0c13e7d 100644 --- a/modules/organize/controllers/organize.php +++ b/modules/organize/controllers/organize.php @@ -195,7 +195,7 @@ class Organize_Controller extends Controller { "expandable" => false, "id" => $child->id, "leaf" => $child->children_count(array(array("type", "=", "album"))) == 0, - "text" => $child->title, + "text" => (string)html::clean($child->title), "nodeType" => "async"); // If the child is in the selected path, open it now. Else, mark it async. |