Hi,
I had the same issue
here 
)
It seems you cant use same droplet more than once in template..
I solved it by replacing droplet code with this code:
<?php
// Change to the number you need!
$section_id = 65;
// Get requested section for requested page
$query_sections = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE section_id = '$section_id' ");
// Make sure there is one
if($query_sections->numRows() > 0) {
$section = $query_sections->fetchRow();
$section_id = $section['section_id'];
$module = $section['module'];
require(WB_PATH.'/modules/'.$module.'/view.php');
}
?>
try, it should work for you too

cheers