aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-12 21:16:30 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-12 21:16:30 -0700
commita4dbd6657ca48131731da050c5378be8c84eda0e (patch)
tree860dae6df57b690caae5b81f5772b765c15d9018
parent58fd9647a2d8b000c1badc6d180e44c3c0c0f23d (diff)
downloadvolse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.tar.gz
volse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.tar.bz2
volse-hubzilla-a4dbd6657ca48131731da050c5378be8c84eda0e.zip
fix friggin &apos; for IE
-rw-r--r--boot.php2
-rw-r--r--view/style.css2
2 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 2b608760c..0633a828f 100644
--- 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')) {
diff --git a/view/style.css b/view/style.css
index 292f8d1af..a031731c5 100644
--- a/view/style.css
+++ b/view/style.css
@@ -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;
}