diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-09-01 20:34:19 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-09-01 20:34:19 -0700 |
commit | ecc0d89cd4c7e8f0b0ba42588d3ee24062fdb1d2 (patch) | |
tree | 4dfc921642899f4b82e705637851f21fd2f08653 /modules/gallery/views/permissions_browse.html.php | |
parent | b14b9e0d7b22945f4934ff6fac8f89dae119cb8f (diff) |
Fix up incorrectly applied html::mark_clean(). Resolves #698, thanks fperwth!
Diffstat (limited to 'modules/gallery/views/permissions_browse.html.php')
-rw-r--r-- | modules/gallery/views/permissions_browse.html.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/gallery/views/permissions_browse.html.php b/modules/gallery/views/permissions_browse.html.php index b9af9117..99a1b7bd 100644 --- a/modules/gallery/views/permissions_browse.html.php +++ b/modules/gallery/views/permissions_browse.html.php @@ -29,7 +29,8 @@ <ul id="gMessage"> <li class="gError"> <?= t("Oh no! Your server needs a configuration change in order for you to hide photos! Ask your server administrator to enable <a %mod_rewrite_attrs>mod_rewrite</a> and set <a %apache_attrs><i>AllowOverride FileInfo Options</i></a> to fix this.", - array("mod_rewrite_attrs" => html::mark_clean("href=\"http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html\" target=\"_blank\"", "apache_attrs" => "href=\"http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride\" target=\"_blank\""))) ?> + array("mod_rewrite_attrs" => html::mark_clean('href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html" target="_blank"'), + "apache_attrs" => html::mark_clean('href="http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride" target="_blank"'))) ?> </li> </ul> <? endif ?> @@ -54,4 +55,4 @@ <div id="gEditPermissionForm"> <?= $form ?> </div> -</div>
\ No newline at end of file +</div> |