Update all code to use helper method html::clean(), html::purify(), ... instead of SafeString directly.

This commit is contained in:
Andy Staudacher
2009-08-29 22:54:20 -07:00
parent 952c885609
commit b9bd1681a3
52 changed files with 143 additions and 143 deletions
@@ -10,7 +10,7 @@
<li class="ui-icon-left">
<span class="ui-icon ui-icon-folder-open"></span>
<span ondblclick="open_dir('<?= $dir ?>')">
<?= SafeString::of(basename($dir)) ?>
<?= html::clean(basename($dir)) ?>
</span>
<ul>
<? endforeach ?>
@@ -24,7 +24,7 @@
<? endif ?>
file="<?= strtr($file, array('"' => '\\"')) ?>"
>
<?= SafeString::of(basename($file)) ?>
<?= html::clean(basename($file)) ?>
</span>
</li>
<? endforeach ?>