Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fixes broken rendering trying to parse against <script> input values.
  • Loading branch information
FrederickChan committed Mar 10, 2021
1 parent fda266c commit 1c2b323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/classes/PHPFusion/Search/Search_Engine.php
Expand Up @@ -308,7 +308,7 @@ public static function get_param($key = NULL) {
'memory_limit' => self::$memory_limit,
'composevars' => self::$composevars,
'rowstart' => self::$rowstart,
'search_param' => htmlentities(self::$search_param),
'search_param' => self::$search_param,
];

return $key === NULL ? $info : (isset($info[$key]) ? $info[$key] : NULL);
Expand Down

0 comments on commit 1c2b323

Please sign in to comment.