We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Halo,
Saya menemukan bug reflected pada module Bibliography di parameter keywords. Melalui bug ini dapat berdampak antara lain,
Proof of Concepts
The text was updated successfully, but these errors were encountered:
if (isset($_GET['keywords']) AND $_GET['keywords']) { $msg = str_replace('{result->num_rows}', $datagrid->num_rows, __('Found <strong>{result->num_rows}</strong> from your keywords')); //mfc echo '<div class="infoBox">'.$msg.' : "'.**$_GET['keywords']**.'"<div>'.__('Query took').' <b>'.$datagrid->query_time.'</b> '.__('second(s) to complete').'</div></div>'; //mfc }
parameter $_GET['keywords'] '
Solusi Menambahkan filter htmlentities echo '<div class="infoBox">'.$msg.' : "'.htmlentities($_GET['keywords']).'"
echo '<div class="infoBox">'.$msg.' : "'.htmlentities($_GET['keywords']).'"
Sorry, something went wrong.
No branches or pull requests
Halo,
Saya menemukan bug reflected pada module Bibliography di parameter keywords. Melalui bug ini dapat berdampak antara lain,
Proof of Concepts
pada search box.
The text was updated successfully, but these errors were encountered: