Skip to content
New issue

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

Fix typo and formatting in security docs #531

Merged
merged 1 commit into from Feb 21, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/en/reference/security.rst
Expand Up @@ -66,7 +66,9 @@ SQL or DQL query. For Example:
An attacker could inject any value into the GET variable "username" to modify the query to his needs.

Although DQL is a wrapper around SQL that can prevent you from some security implications, the previous
example is also a thread to DQL queries.
example is also a threat to DQL queries.

.. code-block:: php

<?php
// DQL is not safe against arbitrary user-input as well:
Expand Down