diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-23 07:24:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-23 07:24:56 +0000 |
commit | e756213b332727ed5725c081be32bb4af755e001 (patch) | |
tree | 0a53a1b129808f5e0b6a075862615bfed159e8af /includes/common.inc | |
parent | e86cc797fb7019de2e0b8ecaa83747272e4fdb2b (diff) | |
download | brdo-e756213b332727ed5725c081be32bb4af755e001.tar.gz brdo-e756213b332727ed5725c081be32bb4af755e001.tar.bz2 |
- Bugfix: fixed the "variables not set" problem (bug #2014). Patch by
Slavica.
Sorry for the confusion guys - I had it applied on my tree for a couple
of days now but forgot to commit it.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 7e7e106bb..d00c04f2f 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -503,7 +503,7 @@ function check_url($uri) { } function check_form($text) { - return drupal_specialchars($text, 0); + return drupal_specialchars($text, ENT_QUOTES); } function check_query($text) { |