fix friggin ' for IE
This commit is contained in:
parent
58fd9647a2
commit
a4dbd6657c
2
boot.php
2
boot.php
|
@ -192,7 +192,7 @@ if(! function_exists('escape_tags')) {
|
||||||
function escape_tags($string) {
|
function escape_tags($string) {
|
||||||
return(str_replace(
|
return(str_replace(
|
||||||
array('&', '"', "'", '<', '>'),
|
array('&', '"', "'", '<', '>'),
|
||||||
array('&', '"', ''', '<', '>'), $string));
|
array('&', '"', ''', '<', '>'), $string));
|
||||||
}}
|
}}
|
||||||
|
|
||||||
if(! function_exists('login')) {
|
if(! function_exists('login')) {
|
||||||
|
|
|
@ -774,12 +774,14 @@ input#dfrn-url {
|
||||||
color: gray;
|
color: gray;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 175px;
|
width: 175px;
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment-edit-text-full {
|
.comment-edit-text-full {
|
||||||
color: black;
|
color: black;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
width: 350px;
|
width: 350px;
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue