Skip to content
Permalink
Browse files Browse the repository at this point in the history
Commit to fix Security Issue - XSS - CVE-2015-2796 reference issue #37
  • Loading branch information
JonDeG committed Apr 2, 2015
1 parent 8019e13 commit 74ecbd4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/views/dashboard/search_by_tag.php
Expand Up @@ -65,5 +65,5 @@
<?php } // foreach ?>
</div>
<?php } else { ?>
<div><?php echo lang('no search result for', $search_term) ?></div>
<div><?php echo lang('no search result for', clean($search_term)) ?></div>
<?php } // if ?>
2 changes: 1 addition & 1 deletion application/views/dashboard/search_contacts.php
Expand Up @@ -70,5 +70,5 @@
<div id="contactsPaginationBottom"><?php echo advanced_pagination($contacts_pagination, get_url('dashboard', 'search_contacts', array('search_for' => $search_term, 'page' => '#PAGE#'))) ?></div>
</div>
<?php } else { ?>
<div><?php echo lang('no search result for', $search_term) ?></div>
<div><?php echo lang('no search result for', clean($search_term)) ?></div>
<?php } // if ?>
2 changes: 1 addition & 1 deletion application/views/project/search.php
Expand Up @@ -31,5 +31,5 @@
<?php } // if ?>

<?php } else { ?>
<p><?php echo lang('no search result for', $search_string) ?></p>
<p><?php echo lang('no search result for', clean($search_string)) ?></p>
<?php } // if ?>

0 comments on commit 74ecbd4

Please sign in to comment.