Hello Frank,
Can you help me to figure out, what is happening on this code:
759 $req_php_tags = “#<\?php\s+(.*?)\?>#is”;
760 if (preg_match_all($req_php_tags, $content, $match)) {
761 for ($i = 0; $i < count($match[0]); $i++) {
762 ob_start();
763 @eval($match[1][$i]);
764 $code = ob_get_clean();
765 //ob_end_flush();
766 $phpcode = str_replace(‘echo’, ‘return’, $match[1][$i]);
767 //$code = eval($phpcode);
768 $content = str_replace($match[0][$i], $code, $content);
769 }
770 }
771 return $content;
ob_start() php function is on line 762 where the error conflict output buffer with wp-realty plugin.
Thanks.