Browse Source

Merge branch 'master' of github.com:mitsuhiko/flask

pull/112/head
Armin Ronacher 15 years ago
parent
commit
e20534dbf5
  1. 7
      docs/tutorial/views.rst

7
docs/tutorial/views.rst

@ -48,6 +48,13 @@ redirect back to the `show_entries` page::
Note that we check that the user is logged in here (the `logged_in` key is Note that we check that the user is logged in here (the `logged_in` key is
present in the session and `True`). present in the session and `True`).
.. admonition:: Security Note
Be sure to use question marks when building SQL statements, as done in the
example above. Otherwise, your app will be vulnerable to SQL injection when
you use string formatting to build SQL statements.
See :ref:`sqlite3` for more.
Login and Logout Login and Logout
---------------- ----------------

Loading…
Cancel
Save