diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-10-26 11:23:47 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-10-26 11:23:47 +0200 |
commit | 50b4e4097c9321b85f287e75cb12ad8794141b5d (patch) | |
tree | a205399ed3dd7e785733b75c9b807551d29cd72c /application | |
parent | f5772674825fe7e5ec9cbe7d6043f285d737e156 (diff) |
fix missing htmlspecialchars in html_header.php
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application')
-rw-r--r-- | application/views/file/html_header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/html_header.php b/application/views/file/html_header.php index 5c62ef973..dc9bb05ad 100644 --- a/application/views/file/html_header.php +++ b/application/views/file/html_header.php @@ -26,7 +26,7 @@ include(FCPATH."application/views/header.php"); ?> <li class="divider-vertical"></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" id="language-toggle"> - Language: <?php echo $current_highlight; ?> + Language: <?php echo htmlspecialchars($current_highlight); ?> <b class="caret"></b> </a> <div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px;"> |