mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
Fix strict compare bug
This commit is contained in:
parent
22cbd84f3c
commit
c3d64d13ef
@ -214,7 +214,7 @@ class SimpleXLSXGen {
|
||||
$ct = 's'; // shared string
|
||||
$v = str_replace(['&','<','>'],['&','<','>'], $v);
|
||||
$cv = false;
|
||||
if ( isset($SI_KEYS[$v]) && $SI_KEYS[$v] === $v ) {
|
||||
if ( isset($SI_KEYS[$v]) && $SI[$SI_KEYS[$v]] === $v ) {
|
||||
$cv = $SI_KEYS[$v];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user