Browse Source

fix : Warning: Trying to access array offset on value of type bool in /home/httpd/vhosts/aflac.fr/domains/dev.aflac.fr/httpdocs/includes/tcpdi/tcpdi_parser.php on line 1377

Philippe GRAND 2 years ago
parent
commit
3de3b421b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      htdocs/includes/tcpdi/tcpdi_parser.php

+ 1 - 1
htdocs/includes/tcpdi/tcpdi_parser.php

@@ -1373,7 +1373,7 @@ class tcpdi_parser {
     			return false;
     		} else {
                 $res = $this->_getPageRotation($obj[1][1]['/Parent']);
-                if ($res[0] == PDF_TYPE_OBJECT)
+                if ($res && $res[0] == PDF_TYPE_OBJECT)
                     return $res[1];
                 return $res;
     		}