diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 02:12:01 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 02:12:01 -0700 |
commit | 8312eb116e65195e3fc70d59b3b0817b9c807287 (patch) | |
tree | 1a7191e21d19c92cd5fa843144356a8bd950ef06 /modules/gallery/controllers/admin_maintenance.php | |
parent | 26f6d8192ffdfd0280987ec2b9df0305e983746d (diff) |
XSS review fixes (mostly adding missing html::mark_clean()) calls.
Diffstat (limited to 'modules/gallery/controllers/admin_maintenance.php')
-rw-r--r-- | modules/gallery/controllers/admin_maintenance.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/admin_maintenance.php b/modules/gallery/controllers/admin_maintenance.php index 543961a1..66bcce55 100644 --- a/modules/gallery/controllers/admin_maintenance.php +++ b/modules/gallery/controllers/admin_maintenance.php @@ -34,7 +34,7 @@ class Admin_Maintenance_Controller extends Admin_Controller { "%count tasks are stalled", $stalled_count), t('<a href="%url">view</a>', - array("url" => url::site("admin/maintenance")))); + array("url" => html::mark_clean(url::site("admin/maintenance"))))); } $view = new Admin_View("admin.html"); |