mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 07:10:12 +01:00
style case sensitivity fix
This commit is contained in:
parent
d26b3a7e74
commit
e2ef65a112
@ -567,7 +567,7 @@ class ModelSearchMessage extends Model {
|
|||||||
$chunk = '';
|
$chunk = '';
|
||||||
|
|
||||||
for($i=0; $i<count($h); $i++) {
|
for($i=0; $i<count($h); $i++) {
|
||||||
$pos = strpos($h[$i], "</style>");
|
$pos = stripos($h[$i], "</style>");
|
||||||
if($pos != FALSE) {
|
if($pos != FALSE) {
|
||||||
$s = substr($h[$i], $pos+8, strlen($h[$i]));
|
$s = substr($h[$i], $pos+8, strlen($h[$i]));
|
||||||
$chunk .= $s . "\n";
|
$chunk .= $s . "\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user