diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-12 21:16:30 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-12 21:16:30 -0700 |
commit | a4dbd6657ca48131731da050c5378be8c84eda0e (patch) | |
tree | 860dae6df57b690caae5b81f5772b765c15d9018 /boot.php | |
parent | 58fd9647a2d8b000c1badc6d180e44c3c0c0f23d (diff) | |
download | volse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.tar.gz volse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.tar.bz2 volse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.zip |
fix friggin ' for IE
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -192,7 +192,7 @@ if(! function_exists('escape_tags')) { function escape_tags($string) { return(str_replace( array('&', '"', "'", '<', '>'), - array('&', '"', ''', '<', '>'), $string)); + array('&', '"', ''', '<', '>'), $string)); }} if(! function_exists('login')) { |