profile extra fields, profile deletion
This commit is contained in:
4
boot.php
4
boot.php
@@ -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')) {
|
||||
|
||||
Reference in New Issue
Block a user