diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index a66dbda4e..a735afa61 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -550,7 +550,7 @@ if(!is_writeable($settings->_configFilePath)) { break; default: ?> - <input type="text" name="<?php echo "extensions[".$extname."][".$confkey."]"; ?>" title="<?php echo $conf['help']; ?>" value="<?php if(isset($settings->_extensions[$extname][$confkey])) echo $settings->_extensions[$extname][$confkey]; ?>" size="<?php echo $conf['size']; ?>" /> + <input type="text" name="<?php echo "extensions[".$extname."][".$confkey."]"; ?>" title="<?php echo isset($conf['help']) ? $conf['help'] : ''; ?>" value="<?php if(isset($settings->_extensions[$extname][$confkey])) echo $settings->_extensions[$extname][$confkey]; ?>" size="<?php echo $conf['size']; ?>" /> <?php } ?>