profile extra fields, profile deletion
This commit is contained in:
parent
e3b86cc583
commit
79725b28cf
4 changed files with 104 additions and 22 deletions
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')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue