]> git.mxchange.org Git - friendica.git/commitdiff
fix friggin ' for IE
authorMike Macgirvin <mike@macgirvin.com>
Tue, 13 Jul 2010 04:16:30 +0000 (21:16 -0700)
committerMike Macgirvin <mike@macgirvin.com>
Tue, 13 Jul 2010 04:16:30 +0000 (21:16 -0700)
boot.php
view/style.css

index 2b608760cd8d2659ed265892602ba6975e536627..0633a828f6760d9f1c5084ef5384ea4d5cf24f5c 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -192,7 +192,7 @@ if(! function_exists('escape_tags')) {
 function escape_tags($string) {
        return(str_replace(
                array('&', '"', "'", '<', '>'), 
-               array('&amp;', '&quot;', '&apos;', '&lt;', '&gt;'), $string));
+               array('&amp;', '&quot;', '&#39;', '&lt;', '&gt;'), $string));
 }}
 
 if(! function_exists('login')) {
index 292f8d1af5f28536c9b61604cbb7ac85d4b8fbbd..a031731c54d2f73c756df2e27c6baf9b7347a65b 100644 (file)
@@ -774,12 +774,14 @@ input#dfrn-url {
        color: gray;
        height: 30px;
        width: 175px;
+       overflow: auto;
 }
 
 .comment-edit-text-full {
        color: black;
        height: 150px;
        width: 350px;
+       overflow: auto;
 }