Author: jtauber
Date: Tue Jan 20 02:56:44 2009
New Revision: 37
Modified:
trunk/bookmarks/views.py
Log:
strip bookmark description field
Modified: trunk/bookmarks/views.py
==============================================================================
--- trunk/bookmarks/views.py (original)
+++ trunk/bookmarks/views.py Tue Jan 20 02:56:44 2009
@@ -72,7 +72,7 @@
if "url" in request.GET:
initial["url"] = request.GET["url"]
if "description" in request.GET:
- initial["description"] = request.GET["description"]
+ initial["description"] = request.GET["description"].strip()
if "redirect" in request.GET:
initial["redirect"] = request.GET["redirect"]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---