Bugs: Undefined variables
-
I found that there’s two issues with the current plugin version.
Undefined variable name
Fix:In fbgallery.php on line 128
if( isset($values['name']) && $values['name'] == '' ){ $caption = ""; } else{ $caption = $values['name']; }
Should be:
if( isset($values['name']) && $values['name'] == '' ){ $caption = $values['name']; } else{ $caption = ""; }
Undefined variable x
Add after line 125:
$x = 0;
- The topic ‘Bugs: Undefined variables’ is closed to new replies.