WebsiteBaker 2.13.9 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
global $database, $wb, $TEXT;$content = ' ';$query_sec = $database->query("SELECT section_id,module FROM ".TABLE_PREFIX."sections WHERE section_id = '$sid' ");if($query_sec->numRows() > 0) { $section = $query_sec->fetchRow(); $section_id = $section['section_id']; $module = $section['module']; ob_start(); require(WB_PATH.'/modules/'.$module.'/view.php'); $content = ob_get_contents(); ob_end_clean();}if (empty($content)){$content = ' ';}else{$content = $content;}return $content;