mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-22 23:05:18 -04:00
Run all variables containing user-entered text through p::clean()
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<div id="gAlbumHeaderButtons">
|
||||
<?= $theme->dynamic_top() ?>
|
||||
</div>
|
||||
<h1><?= $tag->name ?></h1>
|
||||
<h1><?= p::clean($tag->name) ?></h1>
|
||||
</div>
|
||||
|
||||
<ul id="gAlbumGrid">
|
||||
@@ -16,7 +16,7 @@
|
||||
width="<?= $child->thumb_width ?>"
|
||||
height="<?= $child->thumb_height ?>" />
|
||||
</a>
|
||||
<h2><?= $child->title ?></h2>
|
||||
<h2><?= p::clean($child->title) ?></h2>
|
||||
<?= $theme->thumb_bottom($child) ?>
|
||||
<ul class="gMetadata">
|
||||
<?= $theme->thumb_info($child) ?>
|
||||
|
||||
Reference in New Issue
Block a user