Skip to content

Commit

Permalink
fix url params with special char
Browse files Browse the repository at this point in the history
  • Loading branch information
ximex committed Nov 6, 2016
1 parent 69b5f90 commit 16bb799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adm_program/modules/guestbook/guestbook_function.php
Expand Up @@ -29,7 +29,7 @@
$getMode = admFuncVariableIsValid($_GET, 'mode', 'int', array('requireValue' => true));
$getHeadline = admFuncVariableIsValid($_GET, 'headline', 'string', array('defaultValue' => $gL10n->get('GBO_GUESTBOOK')));

$getHeadline = htmlentities($getHeadline);
$getHeadline = urlencode($getHeadline);

// pruefen ob das Modul ueberhaupt aktiviert ist
if ($gPreferences['enable_guestbook_module'] == 0)
Expand Down

0 comments on commit 16bb799

Please sign in to comment.