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

View File

@@ -1,6 +1,6 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<h4>
<?= SafeString::of($group->name) ?>
<?= html::clean($group->name) ?>
<? if (!$group->special): ?>
<a href="<?= url::site("admin/users/delete_group_form/$group->id") ?>"
title="<?= t("Delete the %name group", array("name" => $group->name)) ?>"
@@ -17,7 +17,7 @@
<ul>
<? foreach ($group->users as $i => $user): ?>
<li class="gUser">
<?= SafeString::of($user->name) ?>
<?= html::clean($user->name) ?>
<? if (!$group->special): ?>
<a href="javascript:remove_user(<?= $user->id ?>, <?= $group->id ?>)"
class="gButtonLink ui-state-default ui-corner-all ui-icon-left"