Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions includes/tmpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<title><?php echo $head["title"]; ?></title>

<link rel="stylesheet" media="screen" href="<?php echo $currentStyleSheet; ?>?v=8may2013">
<link rel="stylesheet" media="screen" href="<?php echo htmlentities($currentStyleSheet); ?>?v=8may2013">
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo $zenUrls["zen-rss"]; ?>">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down Expand Up @@ -112,7 +112,7 @@
$nextPage = $thisPage + 1;
?>
<li class="next">
<a href="<?php echo "$langURL/$currentDesign/page$nextPage"; ?>">
<a href="<?php echo htmlentities("$langURL/$currentDesign/page$nextPage") ?>">
<?php echo $sidebar["design-archives-next"]; ?> <span class="indicator">&rsaquo;</span>
</a>
</li>
Expand All @@ -128,7 +128,7 @@
}
?>
<li class="previous">
<a href="<?php echo "$langURL/$currentDesign/$prevPage"; ?>">
<a href="<?php echo htmlentities("$langURL/$currentDesign/$prevPage) ?>">
<span class="indicator">&lsaquo;</span> <?php echo $sidebar["design-archives-previous"]; ?>
</a>
</li>
Expand All @@ -148,7 +148,7 @@
<h3 class="resources"><?php echo $sidebar["design-resources-h3"]; ?></h3>
<ul>
<li class="view-css">
<a href="<?php echo "$currentStyleSheet" ?>" title="<?php echo $sidebar["view-css-title"]; ?>">
<a href="<?php echo htmlentities($currentStyleSheet) ?>" title="<?php echo $sidebar["view-css-title"]; ?>">
<?php echo $sidebar["view-css-text"]; ?>
</a>
</li>
Expand Down Expand Up @@ -188,4 +188,4 @@
<div class="extra4" role="presentation"></div><div class="extra5" role="presentation"></div><div class="extra6" role="presentation"></div>

</body>
</html>
</html>