Project

General

Profile

Bug #92698

Updated by David Bruchmann over 3 years ago

Some variable are not checked properly before usage: 
 <pre> 
 $slide = isset($conf['slide.']) ? (int)$this->cObj->stdWrap($conf['slide'], $conf['slide.']) : (int)$conf['slide']; 
 </pre> <pre> 
 here even $conf['slide'] might not be set, that's producing an error then. 

 <pre> 
         $slideCollect = isset($conf['slide.']['collect.']) ? (int)$this->cObj->stdWrap($conf['slide.']['collect'], $conf['slide.']['collect.']) : (int)$conf['slide.']['collect']; 
 </pre> 
 here even $conf['slide.']['collect'] might not be set, that's producing an error then. 

 <pre> 
         $slideCollectReverse = isset($conf['slide.']['collectReverse.']) ? (int)$this->cObj->stdWrap($conf['slide.']['collectReverse'], $conf['slide.']['collectReverse.']) : (int)$conf['slide.']['collectReverse']; 
 </pre> 
 here even $conf['slide.']['collectReverse'] might not be set, that's producing an error then. 

 <pre> 
         $slideCollectFuzzy = isset($conf['slide.']['collectFuzzy.']) 
             ? (bool)$this->cObj->stdWrap($conf['slide.']['collectFuzzy'], $conf['slide.']['collectFuzzy.']) 
             : (bool)$conf['slide.']['collectFuzzy']; 
 </pre> 
 here $conf['slide.']['collectFuzzy'] might not be set, that's producing an error then (line 3 above). 

 <pre> 
         $conf['select.']['pidInList'] = $this->cObj->getSlidePids($conf['select.']['pidInList'], $conf['select.']['pidInList.']); 
 </pre> 
 here $conf['select.']['pidInList'] might not be set, that's producing an error then.

Back