QRCode lib
This commit is contained in:
@ -815,7 +815,16 @@
|
||||
{
|
||||
if(array_key_exists ( $nextnode->getAttribute("n"), $row) || ($nextnode->getAttribute("vt")=="file" && array_key_exists ( $nextnode->getAttribute("cd"), $row)))
|
||||
{
|
||||
if($nextnode->getAttribute("vt")=="b"){ if($row[$nextnode->getAttribute("n")]===false) { $row[$nextnode->getAttribute("n")]="0"; } else if($row[$nextnode->getAttribute("n")]===true) { $row[$nextnode->getAttribute("n")]="1"; } }
|
||||
if($nextnode->getAttribute("vt")=="b")
|
||||
{
|
||||
if($row[$nextnode->getAttribute("n")]===false)
|
||||
{
|
||||
$row[$nextnode->getAttribute("n")]="0";
|
||||
} else if($row[$nextnode->getAttribute("n")]===true)
|
||||
{
|
||||
$row[$nextnode->getAttribute("n")]="1";
|
||||
}
|
||||
}
|
||||
|
||||
if($nextnode->getAttribute("vt")=="blob") { //Только blob не file так как file как обычная текстовая строка (100 символов)
|
||||
if(array_key_exists($nextnode->getAttribute("cd"), $row)) {
|
||||
|
||||
Reference in New Issue
Block a user