diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-10 16:47:10 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-10 16:47:10 -0700 |
commit | 79725b28cf8cdcf97eaf61b2e1c23529f7a6e527 (patch) | |
tree | 09491cd08ed818b7ded391434c28aed2eacc8bf3 /boot.php | |
parent | e3b86cc583c693071a9fda462f2145b7a5d55400 (diff) | |
download | volse-hubzilla-79725b28cf8cdcf97eaf61b2e1c23529f7a6e527.tar.gz volse-hubzilla-79725b28cf8cdcf97eaf61b2e1c23529f7a6e527.tar.bz2 volse-hubzilla-79725b28cf8cdcf97eaf61b2e1c23529f7a6e527.zip |
profile extra fields, profile deletion
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -190,7 +190,9 @@ function notags($string) { // The PHP built-in tag escape function has traditionally been buggy if(! function_exists('escape_tags')) { function escape_tags($string) { - return(str_replace(array("<",">","&"), array('<','>','&'), $string)); + return(str_replace( + array('&', '"', "'", '<', '>'), + array('&', '"', ''', '<', '>'), $string)); }} if(! function_exists('login')) { |